Novel Updates Notifier
Add a notification icon and reading shortcuts for your Novel Updates reading list.
Τι είναι το Novel Updates Notifier;
Το Novel Updates Notifier είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Spark-NF, και η κύρια λειτουργία του είναι "Add a notification icon and reading shortcuts for your Novel Updates reading list.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Novel Updates Notifier
Λήψη αρχείων επέκτασης Novel Updates Notifier σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
* Checks when new chapters are out for the novels in your reading list * Notifies you via the extension's badge and optional notifications * Can automatically mark chapters as read
Βασικές Πληροφορίες Επέκτασης
Όνομα | Novel Updates Notifier |
ID | plhhbkakiaffbinchcacleepogbjlban |
Επίσημο URL | https://chromewebstore.google.com/detail/novel-updates-notifier/plhhbkakiaffbinchcacleepogbjlban |
Περιγραφή | Add a notification icon and reading shortcuts for your Novel Updates reading list. |
Μέγεθος Αρχείου | 216 KB |
Αριθμός Εγκαταστάσεων | 39 |
Τρέχουσα Έκδοση | 1.5.0 |
Τελευταία Ενημέρωση | 2020-04-22 |
Ημερομηνία Δημοσίευσης | 2020-04-22 |
Προγραμματιστής | Spark-NF |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/Spark-NF/novel-updates-notifier |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/Spark-NF/novel-updates-notifier/issues |
Υποστηριζόμενες Γλώσσες | en,fr |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extensionName__", "short_name": "NU Notifier", "version": "1.5.0", "author": "Spark-NF", "description": "__MSG_extensionDescription__", "homepage_url": "https:\/\/github.com\/Spark-NF\/novel-updates-notifier", "icons": { "48": "icons\/icon-48.png", "96": "icons\/icon-96.png", "128": "icons\/icon-128.png" }, "content_security_policy": "script-src 'self'; object-src 'self'; connect-src https:\/\/www.novelupdates.com", "default_locale": "en", "background": { "page": "src\/background\/background.html", "persistent": true }, "permissions": [ "storage", "cookies", "notifications", "*:\/\/www.novelupdates.com\/*" ], "optional_permissions": [ "webNavigation", "*:\/\/www.webnovel.com\/*", "*:\/\/m.webnovel.com\/*", "*:\/\/www.wuxiaworld.com\/*" ], "browser_action": { "default_icon": { "16": "icons\/action-16.png", "32": "icons\/action-32.png", "64": "icons\/action-64.png" }, "theme_icons": [ { "light": "icons\/action-16-light.png", "dark": "icons\/action-16.png", "size": 16 }, { "light": "icons\/action-32-light.png", "dark": "icons\/action-32.png", "size": 32 }, { "light": "icons\/action-64-light.png", "dark": "icons\/action-64.png", "size": 64 } ], "default_title": "Novel Updates", "default_popup": "src\/popup\/popup.html" }, "options_ui": { "page": "src\/options\/options.html" }, "web_accessible_resources": [ "src\/userstyles\/css\/*.css" ] } |