YouTube Annotation Toggle

Adds a button that allows you to turn off and on the annotations on Youtube videos

Vad är YouTube Annotation Toggle?

YouTube Annotation Toggle är en Chrome-tillägg utvecklad av https://www.ivoilic.com, och dess huvudfunktion är "Adds a button that allows you to turn off and on the annotations on Youtube videos".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner YouTube Annotation Toggle-förlängningens CRX-fil

Ladda ner YouTube Annotation Toggle-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

                        Sometimes you just want to watch a music video without those annoying annotations popping up and ruining your enjoyment.  This extension add button to the toolbar of YouTube videos that allows you to toggle annotations on and off.  Please report any missed annotation or problems.  Future update will include the ability to have annotations hidden by default.                    

Grundläggande Information om Tillägg

Namn YouTube Annotation Toggle YouTube Annotation Toggle
ID nhhfmndchldoleopaobhmdbdaafaolhb
Officiell webbadress https://chromewebstore.google.com/detail/youtube-annotation-toggle/nhhfmndchldoleopaobhmdbdaafaolhb
Beskrivning Adds a button that allows you to turn off and on the annotations on Youtube videos
Filstorlek 42.02 KB
Antal Installationer 67
Aktuell Version 1.1
Senast Uppdaterad 2015-04-08
Publiceringsdatum 2015-04-08
Betyg 3.25/5 Totalt 4 Betyg
Utvecklare https://www.ivoilic.com
Betalningssätt free
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "author": "Ivo Ili\u0107",
    "name": "YouTube Annotation Toggle",
    "description": "Adds a button that allows you to turn off and on the annotations on Youtube videos",
    "version": "1.1",
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "64": "icon-64.png",
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "css": [
                "annotation-toggle.css"
            ],
            "js": [
                "jquery-2.1.3.min.js",
                "annotation-toggle.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "run_at": "document_idle"
        }
    ]
}