AnnotationsOff
This extension removes all unwanted annotations and cards on YouTube videos
Apa itu AnnotationsOff?
AnnotationsOff adalah ekstensi Chrome yang dikembangkan oleh http://leocardz.com, dan fitur utamanya adalah "This extension removes all unwanted annotations and cards on YouTube videos".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi AnnotationsOff
Unduh file ekstensi AnnotationsOff dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
This extension removes all unwanted annotations and cards on Youtube videos.
Informasi Dasar Ekstensi
Nama | |
ID | gpifenckpeaielkgcbakjanpdppfnapn |
URL Resmi | https://chrome.google.com/webstore/detail/annotationsoff/gpifenckpeaielkgcbakjanpdppfnapn |
Deskripsi | This extension removes all unwanted annotations and cards on YouTube videos |
Ukuran File | 49.03 KB |
Jumlah Instalasi | 44 |
Versi Saat Ini | 1.3 |
Terakhir Diperbarui | 2015-04-07 |
Tanggal Publikasi | 2015-04-07 |
Penilaian | 4.00/5 Total 4 Penilaian |
Pengembang | http://leocardz.com |
Tipe Pembayaran | free |
Situs Ekstensi | http://lab.leocardz.com/annotationsoff |
URL Halaman Bantuan | https://github.com/LeonardoCardoso/AnnotationsOff/issues |
Bahasa yang Didukung | 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:\/\/*\/*" ] } |