AnnotationsOff
This extension removes all unwanted annotations and cards on YouTube videos
Co to jest AnnotationsOff?
AnnotationsOff to rozszerzenie Chrome opracowane przez http://leocardz.com, a jego główną funkcją jest „This extension removes all unwanted annotations and cards on YouTube videos”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia AnnotationsOff
Pobierz pliki rozszerzeń AnnotationsOff w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
This extension removes all unwanted annotations and cards on Youtube videos.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | gpifenckpeaielkgcbakjanpdppfnapn |
Oficjalny URL | https://chrome.google.com/webstore/detail/annotationsoff/gpifenckpeaielkgcbakjanpdppfnapn |
Opis | This extension removes all unwanted annotations and cards on YouTube videos |
Rozmiar pliku | 49.03 KB |
Liczba instalacji | 44 |
Aktualna Wersja | 1.3 |
Ostatnia Aktualizacja | 2015-04-07 |
Data Publikacji | 2015-04-07 |
Ocena | 4.00/5 Łącznie 4 Oceny |
Deweloper | http://leocardz.com |
Typ Płatności | free |
Strona Rozszerzenia | http://lab.leocardz.com/annotationsoff |
Adres URL Strony Pomocy | https://github.com/LeonardoCardoso/AnnotationsOff/issues |
Obsługiwane Języki | 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:\/\/*\/*" ] } |