AnnotationsOff
This extension removes all unwanted annotations and cards on YouTube videos
什麼是AnnotationsOff?
AnnotationsOff是由http://leocardz.com開發的Chrome擴展程式,該擴展的主要功能是“This extension removes all unwanted annotations and cards on YouTube videos”。
擴展截圖
下載AnnotationsOff擴展crx文件
下載AnnotationsOff擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension removes all unwanted annotations and cards on Youtube videos.
擴展基本資訊
名稱 | |
ID | gpifenckpeaielkgcbakjanpdppfnapn |
官方網址 | https://chrome.google.com/webstore/detail/annotationsoff/gpifenckpeaielkgcbakjanpdppfnapn |
簡介 | This extension removes all unwanted annotations and cards on YouTube videos |
檔案大小 | 49.03 KB |
安裝次數 | 44 |
目前版本 | 1.3 |
更新時間 | 2015-04-07 |
上架時間 | 2015-04-07 |
評分 | 4.00/5 共 4 次評分 |
開發者 | http://leocardz.com |
付費類型 | free |
擴展官網 | http://lab.leocardz.com/annotationsoff |
說明頁面URL | https://github.com/LeonardoCardoso/AnnotationsOff/issues |
支援的語言 | 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:\/\/*\/*" ] } |