Chrome Watcher
Chrome watcher is a website watcher for chrome.
ما هو Chrome Watcher؟
Chrome Watcher هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "Chrome watcher is a website watcher for chrome.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Chrome Watcher
قم بتنزيل ملفات الامتداد Chrome Watcher بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Google chrome extension for watching website changes.
Currently supports watching by
- HTML ID
- HTML Class
- HTML Tag
- Regex Pattern
Currently only supports push time of 30 min.
== Future support ==
Allow changing push time.
If you have any additional requests, post it here or in our repo. (https://github.com/jame-sparker/chrome-watcher)
Looking for additional developers. معلومات أساسية عن التمديد
| الاسم | |
| ID | hohdamhhecpldfefggjafbjnbbmcalgn |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/chrome-watcher/hohdamhhecpldfefggjafbjnbbmcalgn |
| الوصف | Chrome watcher is a website watcher for chrome. |
| حجم الملف | 49.48 KB |
| عدد التثبيتات | 100 |
| النسخة الحالية | 0.1.0 |
| آخر تحديث | 2019-08-27 |
| تاريخ النشر | 2019-08-25 |
| تقييم | 4.00/5 مجموع تقييمات 1 |
| المطور | Unknown |
| نوع الدفع | free |
| اللغات المدعومة | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Chrome Watcher",
"version": "0.1.0",
"description": "Chrome watcher is a website watcher for chrome.",
"permissions": [
"storage",
"alarms",
"*:\/\/*\/",
"tabs"
],
"options_page": "options\/options.html",
"background": {
"scripts": [
"background\/interval-handler.js",
"background\/request-manager.js",
"background\/requestor.js",
"background\/background.js",
"background\/badge-manager.js"
],
"persistent": false
},
"browser_action": {
"default_popup": "popup\/popup.html",
"default_icon": {
"16": "images\/path16.png",
"32": "images\/path32.png",
"48": "images\/path48.png",
"128": "images\/path128.png"
}
},
"icons": {
"16": "images\/path16.png",
"32": "images\/path32.png",
"48": "images\/path48.png",
"128": "images\/path128.png"
},
"manifest_version": 2
} | |