ScriptAutoRunner

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

ScriptAutoRunner là gì?

ScriptAutoRunner là một tiện ích mở rộng Chrome được phát triển bởi nakajmg, và tính năng chính của nó là "Injects to any Script into a Website. It can be autorun as well.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng ScriptAutoRunner

Tải xuống các tệp mở rộng ScriptAutoRunner dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ScriptAutoRunner ScriptAutoRunner
ID gpgjofmpmjjopcogjgdldidobhmjmdbm
URL Chính Thức https://chromewebstore.google.com/detail/scriptautorunner/gpgjofmpmjjopcogjgdldidobhmjmdbm
Mô tả Injects to any Script into a Website. It can be autorun as well.
Kích Thước Tệp 130 KB
Số Lần Cài Đặt 10,000
Phiên Bản Hiện Tại 0.1.0
Cập Nhật Lần Cuối 2015-09-23
Ngày Phát Hành 2015-09-23
Đánh Giá 4.87/5 Tổng số 31 Đánh Giá
Nhà Phát Triển nakajmg
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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",
        ""
    ]
}