Productive Youtube

Remove recommendations page, filter useless channels and speed up videos past 2x. Youtube at times can be very distracting with a…

Hvad er Productive Youtube?

Productive Youtube er en Chrome-udvidelse udviklet af daniel.ziorli, og dens hovedfunktion er "Remove recommendations page, filter useless channels and speed up videos past 2x. Youtube at times can be very distracting with a…".

Udvidelsesskærmbilleder

screenshot

Download Productive Youtube-udvidelses-CRX-fil

Download Productive Youtube-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        Remove recommendations page, filter useless channels and speed up videos past 2x. Youtube at times can be very distracting with a recommendations page optimized for watch time who can blame you. By removing it you can use youtube as a search engine instead of a mindless social media platform. Filter the channels you deem productive and increase the speed past 2x to take in information faster. Productive Youtube is designed to remove distraction and let you become the best you.                    

Grundlæggende oplysninger om udvidelsen

Navn Productive Youtube Productive Youtube
ID iigjefiodblcogecpmdmpgboghepjcca
Officiel URL https://chromewebstore.google.com/detail/productive-youtube/iigjefiodblcogecpmdmpgboghepjcca
Beskrivelse Remove recommendations page, filter useless channels and speed up videos past 2x. Youtube at times can be very distracting with a…
Filstørrelse 12.19 KB
Antal Installationer 116
Nuværende Version 0.5.1
Senest Opdateret 2019-04-19
Udgivelsesdato 2019-04-18
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler daniel.ziorli
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Productive Youtube",
    "version": "0.5.1",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*",
                "*:\/\/www.youtube.ca\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "extension_icon.png"
    },
    "web_accessible_resources": [
        "redirect.html",
        "popup.html"
    ]
}