Scriptable

Configurable page scripts

Scriptableคืออะไร?

Scriptable เป็นส่วนขยายของ Chrome ที่พัฒนาโดย RaoQu และคุณลักษณะหลักของมันคือ "Configurable page scripts"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Scriptable

ดาวน์โหลดไฟล์ส่วนขยาย Scriptable ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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