Chrome URL Notification
Notify user when the URL matches the registered patterns.
Τι είναι το Chrome URL Notification;
Το Chrome URL Notification είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον smori, και η κύρια λειτουργία του είναι "Notify user when the URL matches the registered patterns.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Chrome URL Notification
Λήψη αρχείων επέκτασης Chrome URL Notification σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Usage Register URL pattern and message ( and some settings ). You can use '*' like https://*.example.com/ - Message will be shown when browsing URL matches with registered pattern. - Display position of message: top / bottom / top left / top right / bottom left / bottom right
Βασικές Πληροφορίες Επέκτασης
Όνομα | Chrome URL Notification |
ID | gdnmbdajkmabbkejinjnjdobmkbfhonn |
Επίσημο URL | https://chromewebstore.google.com/detail/chrome-url-notification/gdnmbdajkmabbkejinjnjdobmkbfhonn |
Περιγραφή | Notify user when the URL matches the registered patterns. |
Μέγεθος Αρχείου | 380 KB |
Αριθμός Εγκαταστάσεων | 261 |
Τρέχουσα Έκδοση | 7.0.0 |
Τελευταία Ενημέρωση | 2022-05-18 |
Ημερομηνία Δημοσίευσης | 2020-05-12 |
Αξιολόγηση | 4.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | smori |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/smori1983/chrome-url-notification |
Υποστηριζόμενες Γλώσσες | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Chrome URL Notification", "description": "Notify user when the URL matches the registered patterns.", "version": "7.0.0", "icons": { "16": "image\/icon_16.png", "48": "image\/icon_48.png", "128": "image\/icon_128.png" }, "default_locale": "en", "permissions": [ "storage", "tabs" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "js\/content.js" ], "run_at": "document_end" } ], "action": { "default_icon": "image\/icon_16.png", "default_title": "Chrome URL Notification", "default_popup": "html\/popup.html" }, "background": { "service_worker": "background.js" }, "options_page": "html\/options.html" } |