AnnotationsOff
This extension removes all unwanted annotations and cards on YouTube videos
Hvad er AnnotationsOff?
AnnotationsOff er en Chrome-udvidelse udviklet af http://leocardz.com, og dens hovedfunktion er "This extension removes all unwanted annotations and cards on YouTube videos".
Udvidelsesskærmbilleder
Download AnnotationsOff-udvidelses-CRX-fil
Download AnnotationsOff-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
This extension removes all unwanted annotations and cards on Youtube videos.
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | gpifenckpeaielkgcbakjanpdppfnapn |
Officiel URL | https://chrome.google.com/webstore/detail/annotationsoff/gpifenckpeaielkgcbakjanpdppfnapn |
Beskrivelse | This extension removes all unwanted annotations and cards on YouTube videos |
Filstørrelse | 49.03 KB |
Antal Installationer | 44 |
Nuværende Version | 1.3 |
Senest Opdateret | 2015-04-07 |
Udgivelsesdato | 2015-04-07 |
Bedømmelse | 4.00/5 Samlet 4 Bedømmelser |
Udvikler | http://leocardz.com |
Betalingsmetode | free |
Udvidelseswebsted | http://lab.leocardz.com/annotationsoff |
Hjælpeside-URL | https://github.com/LeonardoCardoso/AnnotationsOff/issues |
Understøttede Sprog | 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:\/\/*\/*" ] } |