YouFocus - YouTube Filter

A filter for YouTube videos.

Vad är YouFocus - YouTube Filter?

YouFocus - YouTube Filter är en Chrome-tillägg utvecklad av Practimake, och dess huvudfunktion är "A filter for YouTube videos.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner YouFocus - YouTube Filter-förlängningens CRX-fil

Ladda ner YouFocus - YouTube Filter-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

                        Now you can filter your recommended YouTube videos based on the words in the title and channel name! Stop the distractions and 2am YouTube sessions and focus on the videos that matter to you.                    

Grundläggande Information om Tillägg

Namn YouFocus - YouTube Filter YouFocus - YouTube Filter
ID nlokjknlncdcjohkpclkbeofefnmjaad
Officiell webbadress https://chromewebstore.google.com/detail/youfocus-youtube-filter/nlokjknlncdcjohkpclkbeofefnmjaad
Beskrivning A filter for YouTube videos.
Filstorlek 729 KB
Antal Installationer 230
Aktuell Version 1.0.1
Senast Uppdaterad 2020-07-17
Publiceringsdatum 2020-07-15
Betyg 4.80/5 Totalt 5 Betyg
Utvecklare Practimake
E-post [email protected]
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouFocus - YouTube Filter",
    "description": "A filter for YouTube videos.",
    "version": "1.0.1",
    "icons": {
        "128": "funnelV2.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "utils.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "utils.js",
            "background.js"
        ]
    },
    "page_action": {
        "default_icon": "funnelV2.png"
    },
    "options_page": "options.html",
    "permissions": [
        "storage",
        "declarativeContent"
    ]
}