Scripty - Javascript Injector

Inject your Javascript into the webpage

Scripty - Javascript Injector là gì?

Scripty - Javascript Injector là một tiện ích mở rộng Chrome được phát triển bởi https://scripty.abhisheksatre.com, và tính năng chính của nó là "Inject your Javascript into the webpage".

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

screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Scripty - Javascript Injector 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

                        The Scripty extension allows you to inject custom javascript to a webpage.

Features:
1. Inject script based on URL, host or regex.
2. Download script from Script Store.
3. Run the script directly from the context menu.
4. Publish script on Script Store.
5. Share script with other users.
6. Enable/Disable the scripts

How To Use:
1. Add your custom script in the Scripty extension.
2. Select the execution mode: Manual/Automatic
3. To run a script: 
- Open the extension and click the play button.
Or
- Run a script from the context menu. Right Click > Select Scripty > Select your script.
4. Automatic scripts run automatically based on provided configuration.                    

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

Tên Scripty - Javascript Injector Scripty - Javascript Injector
ID milkbiaeapddfnpenedfgbfdacpbcbam
URL Chính Thức https://chromewebstore.google.com/detail/scripty-javascript-inject/milkbiaeapddfnpenedfgbfdacpbcbam
Mô tả Inject your Javascript into the webpage
Kích Thước Tệp 22.85 KB
Số Lần Cài Đặt 24,334
Phiên Bản Hiện Tại 0.0.2
Cập Nhật Lần Cuối 2020-01-30
Ngày Phát Hành 2020-01-30
Đánh Giá 4.18/5 Tổng số 60 Đánh Giá
Nhà Phát Triển https://scripty.abhisheksatre.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://scripty.abhisheksatre.com/
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Scripty - Javascript Injector",
    "short_name": "Scripty",
    "description": "Inject your Javascript into the webpage",
    "version": "0.0.2",
    "author": "Abhishek Satre",
    "browser_action": {
        "default_icon": {
            "16": "images\/icon_16.png",
            "32": "images\/icon_128.png"
        }
    },
    "icons": {
        "16": "images\/icon_16.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "unlimitedStorage",
        "webNavigation",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "web_accessible_resources": [],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}