ScriptAutoRunner

Injects to any Script into a Website. It can be autorun as well.

ScriptAutoRunnerคืออะไร?

ScriptAutoRunner เป็นส่วนขยายของ Chrome ที่พัฒนาโดย nakajmg และคุณลักษณะหลักของมันคือ "Injects to any Script into a Website. It can be autorun as well."

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

screenshot

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

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

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

                        More detail, see https://github.com/nakajmg/ScriptAutoRunner/README.md                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ ScriptAutoRunner ScriptAutoRunner
ID gpgjofmpmjjopcogjgdldidobhmjmdbm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/scriptautorunner/gpgjofmpmjjopcogjgdldidobhmjmdbm
คำอธิบาย Injects to any Script into a Website. It can be autorun as well.
ขนาดไฟล์ 130 KB
จำนวนการติดตั้ง 10,000
เวอร์ชันปัจจุบัน 0.1.0
อัปเดตครั้งล่าสุด 2015-09-23
วันที่เผยแพร่ 2015-09-23
คะแนน 4.87/5 รวมทั้งหมด 31 คะแนน
ผู้พัฒนา nakajmg
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ScriptAutoRunner",
    "description": "Injects to any Script into a Website. It can be autorun as well.",
    "version": "0.1.0",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "icons": {
        "16": "img\/icon.png",
        "48": "img\/icon.png",
        "128": "img\/icon.png"
    },
    "options_page": "options.html",
    "content_security_policy": "allow-scripts; script-src 'self' 'unsafe-eval'; object-src 'self'",
    "browser_action": {
        "default_icon": "img\/icon.png",
        "default_title": "ScriptAutoRunner"
    },
    "permissions": [
        "tabs",
        ""
    ]
}