Scriptable

Configurable page scripts

Scriptable란 무엇입니까?

Scriptable은(는) RaoQu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Configurable page scripts"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        v1.3 Cross origin ajax request enabled.
v1.5 Execute script on page load or clicking extension icon
v2.0 Add crawl API, @see https://github.com/raoqu/scriptable/blob/master/docs/Crawler.md                    

확장 프로그램 기본 정보

이름 Scriptable Scriptable
ID hbheihpcmapeadnhhpglmpjknfjdjncc
공식 URL https://chrome.google.com/webstore/detail/scriptable/hbheihpcmapeadnhhpglmpjknfjdjncc
설명 Configurable page scripts
파일 크기 148 KB
설치 횟수 22
현재 버전 2.1.5
최근 업데이트 2017-05-12
출시 날짜 2017-05-12
평점 5.00/5 총 2 개의 평점
개발자 RaoQu
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/raoqu/scriptable
도움말 페이지 URL https://github.com/raoqu/scriptable/blob/master/docs/Crawler.md
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Scriptable",
    "description": "Configurable page scripts",
    "version": "2.1.5",
    "background": {
        "scripts": [
            "common_base.js",
            "common_callback.js",
            "background_lib_extension.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "jquery-3.1.1.min.js",
                "common_base.js",
                "common_callback.js",
                "common_extension.js",
                "content_lib_url.js",
                "content_lib_html.js",
                "content_lib_net.js",
                "content_lib_download.js",
                "content_util_crawler.js",
                "content_script.js"
            ],
            "all_frames": true
        }
    ],
    "options_page": "options.html",
    "browser_action": {
        "default_name": "Scriptable",
        "default_icon": "icon16.png"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "downloads",
        "storage",
        "unlimitedStorage",
        "http:\/\/*\/*",
        "file:\/\/*\/*"
    ],
    "content_security_policy": "default-src 'none'; style-src 'self'; script-src 'self'; connect-src https:\/\/maps.googleapis.com; img-src https:\/\/maps.google.com"
}