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
擴展基本資訊
名稱 | Scriber |
ID | oodclnpmimnnobgedlkiokaplmmmdkgm |
官方網址 | 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 |
電子郵箱 | [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'" } |