AnnotationsOff
This extension removes all unwanted annotations and cards on YouTube videos
What is AnnotationsOff?
AnnotationsOff is a Chrome extension developed by http://leocardz.com, and its main feature is "This extension removes all unwanted annotations and cards on YouTube videos".
Extension Screenshots
Download AnnotationsOff Extension CRX File
Download AnnotationsOff extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension removes all unwanted annotations and cards on Youtube videos. Extension Basic Information
| Name | |
| ID | gpifenckpeaielkgcbakjanpdppfnapn |
| Official URL | https://chrome.google.com/webstore/detail/annotationsoff/gpifenckpeaielkgcbakjanpdppfnapn |
| Description | This extension removes all unwanted annotations and cards on YouTube videos |
| File Size | 49.03 KB |
| Installation Count | 44 |
| Current Version | 1.3 |
| Last Updated | 2015-04-07 |
| Publish Date | 2015-04-07 |
| Rating | 4.00/5 Total 4 Ratings |
| Developer | http://leocardz.com |
| Payment Type | free |
| Extension Website | http://lab.leocardz.com/annotationsoff |
| Help Page URL | https://github.com/LeonardoCardoso/AnnotationsOff/issues |
| Supported Languages | 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:\/\/*\/*"
]
} | |