AnnotationsOff
This extension removes all unwanted annotations and cards on YouTube videos
Vad är AnnotationsOff?
AnnotationsOff är en Chrome-tillägg utvecklad av http://leocardz.com, och dess huvudfunktion är "This extension removes all unwanted annotations and cards on YouTube videos".
Tilläggsskärmbilder
Ladda ner AnnotationsOff-förlängningens CRX-fil
Ladda ner AnnotationsOff-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 removes all unwanted annotations and cards on Youtube videos.
Grundläggande Information om Tillägg
Namn | |
ID | gpifenckpeaielkgcbakjanpdppfnapn |
Officiell webbadress | https://chrome.google.com/webstore/detail/annotationsoff/gpifenckpeaielkgcbakjanpdppfnapn |
Beskrivning | This extension removes all unwanted annotations and cards on YouTube videos |
Filstorlek | 49.03 KB |
Antal Installationer | 44 |
Aktuell Version | 1.3 |
Senast Uppdaterad | 2015-04-07 |
Publiceringsdatum | 2015-04-07 |
Betyg | 4.00/5 Totalt 4 Betyg |
Utvecklare | http://leocardz.com |
Betalningssätt | free |
Tilläggswebbplats | http://lab.leocardz.com/annotationsoff |
Hjälpsida URL | https://github.com/LeonardoCardoso/AnnotationsOff/issues |
Stödda Språk | 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:\/\/*\/*" ] } |