AnimeTake Watcher
A simple extension that highlights favorited shows on AnimeTake
AnimeTake Watcher क्या है?
AnimeTake Watcher Lunyx द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A simple extension that highlights favorited shows on AnimeTake"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में AnimeTake Watcher एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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].
एक्सटेंशन की मूल जानकारी
नाम | |
ID | iemmmdhaohepnnibpbdbeamkgpmkoahj |
आधिकारिक URL | https://chrome.google.com/webstore/detail/animetake-watcher/iemmmdhaohepnnibpbdbeamkgpmkoahj |
विवरण | A simple extension that highlights favorited shows on AnimeTake |
फ़ाइल का आकार | 169 KB |
स्थापना संख्या | 88 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2014-10-11 |
प्रकाशन तिथि | 2014-10-11 |
रेटिंग | 4.40/5 कुल 5 रेटिंग्स |
डेवलपर | Lunyx |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | http://www.animetake.com |
समर्थित भाषाएँ | 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" } } |