AnimeTake Watcher
A simple extension that highlights favorited shows on AnimeTake
Cos'è AnimeTake Watcher?
AnimeTake Watcher è un'estensione di Chrome sviluppata da Lunyx, e la sua funzione principale è "A simple extension that highlights favorited shows on AnimeTake".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione AnimeTake Watcher
Scarica i file di estensione AnimeTake Watcher in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
This extension is designed to be used on AnimeTake.com. You can add shows to your watch list from the download page of any episode. Shows on your watch list will have their name highlighted in yellow so that you can easily see them on the main page. Great for keeping track of shows that you want to watch each season without having to remember the names of all of them. For any comments or bug reports, please send them to [email protected].
Informazioni di Base sull'Estensione
Nome | |
ID | iemmmdhaohepnnibpbdbeamkgpmkoahj |
URL Ufficiale | https://chrome.google.com/webstore/detail/animetake-watcher/iemmmdhaohepnnibpbdbeamkgpmkoahj |
Descrizione | A simple extension that highlights favorited shows on AnimeTake |
Dimensione del File | 169 KB |
Conteggio Installazioni | 88 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2014-10-11 |
Data di Pubblicazione | 2014-10-11 |
Valutazione | 4.40/5 Totale 5 Valutazioni |
Sviluppatore | Lunyx |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://www.animetake.com |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "AnimeTake Watcher", "description": "A simple extension that highlights favorited shows on AnimeTake", "version": "1.0", "background": { "scripts": [ ".\/js\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.animetake.com\/*" ], "js": [ ".\/js\/jquery-2.0.3.min.js", ".\/js\/json.js", ".\/js\/jstorage.js", ".\/js\/content.js" ] } ], "page_action": { "default_title": "AnimeTake Watcher", "default_icon": "img\/at.png", "default_popup": "popup.html" }, "icons": { "128": "img\/yoko.png" } } |