JS Inject

Create, save, and inject javascript code into web pages.

JS Inject là gì?

JS Inject là một tiện ích mở rộng Chrome được phát triển bởi https://bitwisecreative.com, và tính năng chính của nó là "Create, save, and inject javascript code into web pages.".

Ả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 JS Inject

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

                        This extension allows you to write, save, and execute javascript into web pages. You can save scripts to be run globally (on any page), on a specific domain, on a specific page, or via a "URL contains" string. It uses the CodeMirror editor, configured for javascript editing, and includes both light and dark themes. All data is stored in localStorage.                    

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

Tên JS Inject JS Inject
ID pbicaeiggebhcjkenahlamdjgjhbbekc
URL Chính Thức https://chromewebstore.google.com/detail/js-inject/pbicaeiggebhcjkenahlamdjgjhbbekc
Mô tả Create, save, and inject javascript code into web pages.
Kích Thước Tệp 551 KB
Số Lần Cài Đặt 559
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2019-11-01
Ngày Phát Hành 2019-11-01
Nhà Phát Triển https://bitwisecreative.com
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JS Inject",
    "version": "1.0.0",
    "description": "Create, save, and inject javascript code into web pages.",
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "tabs",
        "unlimitedStorage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "JS Inject",
        "default_icon": {
            "16": "images\/js-inject16.png",
            "32": "images\/js-inject32.png",
            "48": "images\/js-inject48.png",
            "128": "images\/js-inject128.png"
        }
    },
    "icons": {
        "16": "images\/js-inject16.png",
        "32": "images\/js-inject32.png",
        "48": "images\/js-inject48.png",
        "128": "images\/js-inject128.png"
    },
    "manifest_version": 2
}