Chrome URL Notification
Notify user when the URL matches the registered patterns.
Wat is Chrome URL Notification?
Chrome URL Notification is een Chrome-extensie ontwikkeld door smori, en de belangrijkste functie is "Notify user when the URL matches the registered patterns.".
Extensie Screenshots
Download het CRX-bestand van de extensie Chrome URL Notification
Download Chrome URL Notification-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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 Basisinformatie over de Extensie
| Naam | |
| ID | gdnmbdajkmabbkejinjnjdobmkbfhonn |
| Officiële URL | https://chromewebstore.google.com/detail/chrome-url-notification/gdnmbdajkmabbkejinjnjdobmkbfhonn |
| Beschrijving | Notify user when the URL matches the registered patterns. |
| Bestandsgrootte | 380 KB |
| Aantal Installaties | 261 |
| Huidige Versie | 7.0.0 |
| Laatst Bijgewerkt | 2022-05-18 |
| Publicatiedatum | 2020-05-12 |
| Beoordeling | 4.00/5 Totaal 1 Beoordelingen |
| Ontwikkelaar | smori |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/smori1983/chrome-url-notification |
| Ondersteunde Talen | 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"
} | |