Scriber
Automate your browser actions and replay them on https://runape.com
Scriberとは何ですか?
Scriberはhttps://runape.comによって開発されたChromeの拡張機能で、その主な機能は「Automate your browser actions and replay them on https://runape.com」です。
拡張機能のスクリーンショット
Scriber拡張機能のCRXファイルをダウンロード
Scriber拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Scriber records your browser actions and navigation into a re-playable monitor script (CasperJS or Puppeteer) that you can use in your monitors on https://runape.com.
After recording the actions, click the Hunter button to load Hunter that will help you save the page selections that you want to monitor for changes.
Help: https://runape.com/Support/Help?page=scriber_browser_extension
Video: https://youtu.be/kq4aT1mRUdU
monitor website changes
page monitor
track website changes
alert when website changes
website change notification
website change detection
Change Detection and Notification
email when website changes
get notification when a website is updated
notification for website update
monitor web page for keyword
online website watcher
website alert
website defacement monitoring
product price monitoring
price tracker
website watcher
best page monitor
free website monitoring
track web site content
track web page updates
email notifications
web scraping bot
extract articles from website 拡張機能の基本情報
| 名前 | |
| ID | oodclnpmimnnobgedlkiokaplmmmdkgm |
| 公式URL | https://chromewebstore.google.com/detail/scriber/oodclnpmimnnobgedlkiokaplmmmdkgm |
| 説明 | Automate your browser actions and replay them on https://runape.com |
| ファイルサイズ | 620 KB |
| インストール数 | 33 |
| 現在のバージョン | 0.0.0.2 |
| 最終更新日 | 2021-10-06 |
| 公開日 | 2021-10-04 |
| 開発者 | https://runape.com |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://runape.com |
| ヘルプページのURL | https://runape.com/Support |
| プライバシーポリシーページのURL | https://www.termsfeed.com/public/uploads/2019/04/privacy-policy-template.pdf |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Scriber",
"version": "0.0.0.2",
"manifest_version": 2,
"description": "Automate your browser actions and replay them on https:\/\/runape.com",
"icons": {
"48": "img\/logos.png"
},
"browser_action": {
"default_icon": "img\/logos.png",
"default_popup": "control.html",
"default_title": "Scriber"
},
"background": {
"scripts": [
"background.js"
]
},
"permissions": [
"storage",
"activeTab",
"tabs",
"webNavigation",
"background",
"http:\/\/*\/*",
"https:\/\/*\/"
],
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
"\/Hunter\/*"
],
"offline_enabled": true,
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
} | |