Novel Updates Tracker
A chrome extension for the site https://www.novelupdates.com/
Vad är Novel Updates Tracker?
Novel Updates Tracker är en Chrome-tillägg utvecklad av redris96, och dess huvudfunktion är "A chrome extension for the site https://www.novelupdates.com/".
Tilläggsskärmbilder
Ladda ner Novel Updates Tracker-förlängningens CRX-fil
Ladda ner Novel Updates Tracker-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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)
Grundläggande Information om Tillägg
Namn | Novel Updates Tracker |
ID | igmmmhdfkoijidkeddoeafaldcbnmjnn |
Officiell webbadress | https://chromewebstore.google.com/detail/novel-updates-tracker/igmmmhdfkoijidkeddoeafaldcbnmjnn |
Beskrivning | A chrome extension for the site https://www.novelupdates.com/ |
Filstorlek | 199 KB |
Antal Installationer | 78 |
Aktuell Version | 1.1.0 |
Senast Uppdaterad | 2018-12-26 |
Publiceringsdatum | 2018-12-26 |
Betyg | 3.80/5 Totalt 5 Betyg |
Utvecklare | redris96 |
Betalningssätt | free |
Stödda Språk | 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 } |