Rai Play Radio - Audio download

Enable audio downloads on all Rai Play Radio contents

目前為 2019-11-11 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Rai Play Radio - Audio download
// @namespace    https://andrealazzarotto.com/
// @version      1.0
// @description  Enable audio downloads on all Rai Play Radio contents
// @author       Andrea Lazzarotto
// @match        https://www.raiplayradio.it/*
// @match        https://www.rai.it/*
// @match        http://www.rai.it/*
// @require      http://code.jquery.com/jquery-latest.min.js
// @grant        none
// @license      GPL version 3 or any later version; http://www.gnu.org/copyleft/gpl.html
// ==/UserScript==

(function() {
    'use strict';

    $('[data-mediapolis]').attr('data-download', true);
    $('.ico.options').attr({
        'aria-label': 'Opzioni',
    });

    if (window['audioUrl']) {
        let audioUrl = window['audioUrl'];
        $('.Player').after(`<p id="audio-url"><a href="${audioUrl}" target="_blank" download>Scarica audio</a></p>`);
        $('#audio-url a').css({
            'display': 'inline-block',
            'margin': '1rem 0',
            'font-size': '1rem',
            'color': 'white',
            'text-decoration': 'underline'
        });
    }
})();