Zen YouTube: Distraction free youtube

Removes feed and recommendations from YouTube so that you can have a distraction free focused session

Vad är Zen YouTube: Distraction free youtube?

Zen YouTube: Distraction free youtube är en Chrome-tillägg utvecklad av Vishnu Gt, och dess huvudfunktion är "Removes feed and recommendations from YouTube so that you can have a distraction free focused session".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot

Ladda ner Zen YouTube: Distraction free youtube-förlängningens CRX-fil

Ladda ner Zen YouTube: Distraction free 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

                        This extension helps you have a distraction free YouTube session by removing the recommendations and your home page feed so that you don't end up watching YouTube for hours.

Github Link: https://github.com/vishnugt/Zen-Youtube                    

Grundläggande Information om Tillägg

Namn Zen YouTube: Distraction free youtube Zen YouTube: Distraction free youtube
ID ibcpcdiajmfmkieocebkoiofgdbbecel
Officiell webbadress https://chromewebstore.google.com/detail/zen-youtube-distraction-f/ibcpcdiajmfmkieocebkoiofgdbbecel
Beskrivning Removes feed and recommendations from YouTube so that you can have a distraction free focused session
Filstorlek 10.31 KB
Antal Installationer 6,000
Aktuell Version 2.0.0
Senast Uppdaterad 2022-02-09
Publiceringsdatum 2021-10-24
Betyg 5.00/5 Totalt 21 Betyg
Utvecklare Vishnu Gt
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/vishnugt/Zen-Youtube
Hjälpsida URL https://github.com/vishnugt/Zen-Youtube
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Zen YouTube: Distraction free youtube",
    "version": "2.0.0",
    "manifest_version": 2,
    "description": "Removes feed and recommendations from YouTube so that you can have a distraction free focused session",
    "homepage_url": "https:\/\/github.com\/vishnugt\/Zen-Youtube",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "https:\/\/www.youtube.com\/*",
        "storage"
    ],
    "browser_action": {
        "default_popup": "popup\/popup.html"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "inject.js"
            ],
            "all_frames": true
        }
    ]
}