Novel Updates Tracker
A chrome extension for the site https://www.novelupdates.com/
Co je Novel Updates Tracker?
Novel Updates Tracker je rozšíření Chrome vyvinuté redris96, a jeho hlavní funkcí je „A chrome extension for the site https://www.novelupdates.com/“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Novel Updates Tracker
Stáhněte si soubory rozšíření Novel Updates Tracker ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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) Základní Informace o Rozšíření
| Název | |
| ID | igmmmhdfkoijidkeddoeafaldcbnmjnn |
| Oficiální URL | https://chromewebstore.google.com/detail/novel-updates-tracker/igmmmhdfkoijidkeddoeafaldcbnmjnn |
| Popis | A chrome extension for the site https://www.novelupdates.com/ |
| Velikost souboru | 199 KB |
| Počet instalací | 78 |
| Aktuální Verze | 1.1.0 |
| Poslední Aktualizace | 2018-12-26 |
| Datum Vydání | 2018-12-26 |
| Hodnocení | 3.80/5 Celkem 5 Hodnocení |
| Vývojář | redris96 |
| Typ Platby | free |
| Podporované Jazyky | 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
} | |