Chrome URL Notification
Notify user when the URL matches the registered patterns.
Hvad er Chrome URL Notification?
Chrome URL Notification er en Chrome-udvidelse udviklet af smori, og dens hovedfunktion er "Notify user when the URL matches the registered patterns.".
Udvidelsesskærmbilleder
Download Chrome URL Notification-udvidelses-CRX-fil
Download Chrome URL Notification-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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 Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | gdnmbdajkmabbkejinjnjdobmkbfhonn |
| Officiel URL | https://chromewebstore.google.com/detail/chrome-url-notification/gdnmbdajkmabbkejinjnjdobmkbfhonn |
| Beskrivelse | Notify user when the URL matches the registered patterns. |
| Filstørrelse | 380 KB |
| Antal Installationer | 261 |
| Nuværende Version | 7.0.0 |
| Senest Opdateret | 2022-05-18 |
| Udgivelsesdato | 2020-05-12 |
| Bedømmelse | 4.00/5 Samlet 1 Bedømmelser |
| Udvikler | smori |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://github.com/smori1983/chrome-url-notification |
| Understøttede Sprog | 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"
} | |