Productive Youtube

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

Vad är Productive Youtube?

Productive Youtube är en Chrome-tillägg utvecklad av daniel.ziorli, och dess huvudfunktion är "Remove recommendations page, filter useless channels and speed up videos past 2x. Youtube at times can be very distracting with a…".

Tilläggsskärmbilder

screenshot

Ladda ner Productive Youtube-förlängningens CRX-fil

Ladda ner Productive Youtube-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Productive Youtube Productive Youtube
ID iigjefiodblcogecpmdmpgboghepjcca
Officiell webbadress https://chromewebstore.google.com/detail/productive-youtube/iigjefiodblcogecpmdmpgboghepjcca
Beskrivning Remove recommendations page, filter useless channels and speed up videos past 2x. Youtube at times can be very distracting with a…
Filstorlek 12.19 KB
Antal Installationer 116
Aktuell Version 0.5.1
Senast Uppdaterad 2019-04-19
Publiceringsdatum 2019-04-18
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare daniel.ziorli
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    ]
}