Inject JS

This extension will inject javascript from a URL into the current webpage

Inject JS là gì?

Inject JS là một tiện ích mở rộng Chrome được phát triển bởi dailenspencer12, và tính năng chính của nó là "This extension will inject javascript from a URL into the current webpage".

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

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

                                            

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

Tên Inject JS Inject JS
ID ppbefedgpemhmbmiehiodeobnoekdhfo
URL Chính Thức https://chrome.google.com/webstore/detail/inject-js/ppbefedgpemhmbmiehiodeobnoekdhfo
Mô tả This extension will inject javascript from a URL into the current webpage
Kích Thước Tệp 40.14 KB
Số Lần Cài Đặt 80
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2016-09-29
Ngày Phát Hành 2016-09-29
Nhà Phát Triển dailenspencer12
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": "Inject JS",
    "description": "This extension will inject javascript from a URL into the current webpage",
    "version": "1.1",
    "browser_action": {
        "default_icon": "rocket.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.google.com\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "jquery.min.js",
                "popup.js"
            ]
        }
    ],
    "icons": {
        "128": "rocket128.png"
    },
    "permissions": [
        "activeTab"
    ]
}