Novel Updates Tracker
A chrome extension for the site https://www.novelupdates.com/
ما هو Novel Updates Tracker؟
Novel Updates Tracker هو إضافة Chrome تم تطويرها بواسطة redris96، والميزة الرئيسية لها هي "A chrome extension for the site https://www.novelupdates.com/".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Novel Updates Tracker
قم بتنزيل ملفات الامتداد Novel Updates Tracker بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This is an extension for novel updates website. It enables you to do the following things: * Search for novels directly from the extension. * Subscribe to novels. * Gives updates when new chapters come out for subscribed novels. * Open new chapter pages directly from the extension. * Manage subscriptions in the options page. * Auto import novels in reading list (Just open reading list page and click on import button which pops up)
معلومات أساسية عن التمديد
الاسم | Novel Updates Tracker |
ID | igmmmhdfkoijidkeddoeafaldcbnmjnn |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/novel-updates-tracker/igmmmhdfkoijidkeddoeafaldcbnmjnn |
الوصف | A chrome extension for the site https://www.novelupdates.com/ |
حجم الملف | 199 KB |
عدد التثبيتات | 78 |
النسخة الحالية | 1.1.0 |
آخر تحديث | 2018-12-26 |
تاريخ النشر | 2018-12-26 |
تقييم | 3.80/5 مجموع تقييمات 5 |
المطور | redris96 |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Novel Updates Tracker", "version": "1.1.0", "description": "A chrome extension for the site https:\/\/www.novelupdates.com\/", "minimum_chrome_version": "23", "permissions": [ "activeTab", "storage", "tabs", "alarms" ], "options_page": "settings.html", "background": { "scripts": [ "jquery.min.js", "background.js" ], "persistent": false }, "browser_action": { "default_popup": "popup.html", "default_icon": { "128": "images\/NU.png" } }, "content_scripts": [ { "matches": [ "http:\/\/*.novelupdates.com\/series\/*", "https:\/\/*.novelupdates.com\/series\/*" ], "js": [ "jquery.min.js", "jquery-ui.min.js", "content.js" ], "css": [ "content.css" ], "run_at": "document_end" }, { "matches": [ "*:\/\/*.novelupdates.com\/reading-list\/*" ], "js": [ "jquery.min.js", "jquery-ui.min.js", "content_reading.js" ], "css": [ "content.css" ], "run_at": "document_end" } ], "icons": { "128": "images\/NU.png" }, "manifest_version": 2 } |