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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" } |