Scriber
Automate your browser actions and replay them on https://runape.com
Scriberคืออะไร?
Scriber เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://runape.com และคุณลักษณะหลักของมันคือ "Automate your browser actions and replay them on https://runape.com"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Scriber
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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 |
อีเมล | [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'" } |