Novel Updates Tracker
A chrome extension for the site https://www.novelupdates.com/
Novel Updates Trackerとは何ですか?
Novel Updates Trackerはredris96によって開発されたChromeの拡張機能で、その主な機能は「A chrome extension for the site https://www.novelupdates.com/」です。
拡張機能のスクリーンショット
Novel Updates Tracker拡張機能のCRXファイルをダウンロード
Novel Updates Tracker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 } |