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"입니다.

확장 프로그램 스크린샷

screenshot

Scriber 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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'"
}