Productive Youtube

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

Was ist Productive Youtube?

Productive Youtube ist eine Chrome-Erweiterung, die von daniel.ziorli entwickelt wurde, und ihr Hauptmerkmal ist "Remove recommendations page, filter useless channels and speed up videos past 2x. Youtube at times can be very distracting with a…".

Erweiterungsscreenshots

screenshot

Productive Youtube-Erweiterungs-CRX-Datei herunterladen

Laden Sie Productive Youtube-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Productive Youtube Productive Youtube
ID iigjefiodblcogecpmdmpgboghepjcca
Offizielle URL https://chromewebstore.google.com/detail/productive-youtube/iigjefiodblcogecpmdmpgboghepjcca
Beschreibung Remove recommendations page, filter useless channels and speed up videos past 2x. Youtube at times can be very distracting with a…
Dateigröße 12.19 KB
Installationsanzahl 116
Aktuelle Version 0.5.1
Letztes Update 2019-04-19
Veröffentlichungsdatum 2019-04-18
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler daniel.ziorli
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}