Chrome Watcher
Chrome watcher is a website watcher for chrome.
Vad är Chrome Watcher?
Chrome Watcher är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "Chrome watcher is a website watcher for chrome.".
Tilläggsskärmbilder
Ladda ner Chrome Watcher-förlängningens CRX-fil
Ladda ner Chrome Watcher-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | hohdamhhecpldfefggjafbjnbbmcalgn |
| Officiell webbadress | https://chromewebstore.google.com/detail/chrome-watcher/hohdamhhecpldfefggjafbjnbbmcalgn |
| Beskrivning | Chrome watcher is a website watcher for chrome. |
| Filstorlek | 49.48 KB |
| Antal Installationer | 100 |
| Aktuell Version | 0.1.0 |
| Senast Uppdaterad | 2019-08-27 |
| Publiceringsdatum | 2019-08-25 |
| Betyg | 4.00/5 Totalt 1 Betyg |
| Utvecklare | Unknown |
| Betalningssätt | free |
| Stödda Språk | 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
} | |