AnnotationsOff
This extension removes all unwanted annotations and cards on YouTube videos
Was ist AnnotationsOff?
AnnotationsOff ist eine Chrome-Erweiterung, die von http://leocardz.com entwickelt wurde, und ihr Hauptmerkmal ist "This extension removes all unwanted annotations and cards on YouTube videos".
Erweiterungsscreenshots
AnnotationsOff-Erweiterungs-CRX-Datei herunterladen
Laden Sie AnnotationsOff-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
This extension removes all unwanted annotations and cards on Youtube videos.
Grundlegende Informationen zur Erweiterung
Name | |
ID | gpifenckpeaielkgcbakjanpdppfnapn |
Offizielle URL | https://chrome.google.com/webstore/detail/annotationsoff/gpifenckpeaielkgcbakjanpdppfnapn |
Beschreibung | This extension removes all unwanted annotations and cards on YouTube videos |
Dateigröße | 49.03 KB |
Installationsanzahl | 44 |
Aktuelle Version | 1.3 |
Letztes Update | 2015-04-07 |
Veröffentlichungsdatum | 2015-04-07 |
Bewertung | 4.00/5 Insgesamt 4 Bewertungen |
Entwickler | http://leocardz.com |
Zahlungsart | free |
Erweiterungswebsite | http://lab.leocardz.com/annotationsoff |
Hilfeseite URL | https://github.com/LeonardoCardoso/AnnotationsOff/issues |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "AnnotationsOff", "description": "This extension removes all unwanted annotations and cards on YouTube videos", "version": "1.3", "background": { "persistent": false, "scripts": [ "annotationsOff.js", "background.js" ] }, "icons": { "128": "icon.png" }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "content_scripts": [ { "all_frames": true, "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "jquery.min.js", "annotationsOff.js", "popup.js" ] } ], "permissions": [ "tabs", "storage", "http:\/\/*\/*", "https:\/\/*\/*" ] } |