YouTube Auto-Proceed to Video

Automatically skip YouTube's "This video may be inappropriate for some users" check

Vad är YouTube Auto-Proceed to Video?

YouTube Auto-Proceed to Video är en Chrome-tillägg utvecklad av ba32107, och dess huvudfunktion är "Automatically skip YouTube's "This video may be inappropriate for some users" check".

Tilläggsskärmbilder

screenshot

Ladda ner YouTube Auto-Proceed to Video-förlängningens CRX-fil

Ladda ner YouTube Auto-Proceed to Video-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

                                            

Grundläggande Information om Tillägg

Namn YouTube Auto-Proceed to Video YouTube Auto-Proceed to Video
ID lmjcoecpdenpmdoieiiendpoohgmabmd
Officiell webbadress https://chrome.google.com/webstore/detail/youtube-auto-proceed-to-v/lmjcoecpdenpmdoieiiendpoohgmabmd
Beskrivning Automatically skip YouTube's "This video may be inappropriate for some users" check
Filstorlek 45.05 KB
Antal Installationer 1,453
Aktuell Version 1.6.1
Senast Uppdaterad 2022-07-21
Publiceringsdatum 2020-02-23
Betyg 4.00/5 Totalt 8 Betyg
Utvecklare ba32107
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/ba32107/youtube-auto-proceed
Hjälpsida URL https://github.com/ba32107/youtube-auto-proceed
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Auto-Proceed to Video",
    "short_name": "YouTubeAutoProceed",
    "version": "1.6.1",
    "description": "Automatically skip YouTube's \"This video may be inappropriate for some users\" check",
    "manifest_version": 2,
    "permissions": [
        "contextMenus",
        "tabs"
    ],
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "browser_action": {
        "default_title": "YouTube Auto-Proceed to Video",
        "default_icon": {
            "16": "images\/icons\/16.png",
            "32": "images\/icons\/32.png",
            "48": "images\/icons\/48.png",
            "128": "images\/icons\/128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "libs\/browser-polyfill.min.js",
                "contentScript.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/icons\/16.png",
        "32": "images\/icons\/32.png",
        "48": "images\/icons\/48.png",
        "128": "images\/icons\/128.png"
    }
}