AddJS

This extension allows you to add your own custom website specific JavaScript.

AddJS là gì?

AddJS là một tiện ích mở rộng Chrome được phát triển bởi http://mkhsoft.eu, và tính năng chính của nó là "This extension allows you to add your own custom website specific JavaScript.".

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

screenshot
screenshot

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

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

                        AddJS is a light-weight extension for injecting your own JavaScript to a website. You can define domain specific JavaScript snippets that will be injected to all sites in that web domain. 

Furthermore, your snippets are synchronised automatically to all Chrome browsers you are using on different machines.                    

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

Tên AddJS AddJS
ID ikdcaklgiaookdchoncnfcidafmmlndm
URL Chính Thức https://chrome.google.com/webstore/detail/addjs/ikdcaklgiaookdchoncnfcidafmmlndm
Mô tả This extension allows you to add your own custom website specific JavaScript.
Kích Thước Tệp 57.22 KB
Số Lần Cài Đặt 165
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2017-01-19
Ngày Phát Hành 2017-01-19
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển http://mkhsoft.eu
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",
    "manifest_version": 2,
    "name": "AddJS",
    "description": "This extension allows you to add your own custom website specific JavaScript.",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon64.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "64": "icon64.png",
        "128": "icon128.png",
        "256": "icon128.png"
    },
    "background": {
        "scripts": [
            "logic.js",
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ]
}