AddJS

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

AddJSとは何ですか?

AddJSはhttp://mkhsoft.euによって開発されたChromeの拡張機能で、その主な機能は「This extension allows you to add your own custom website specific JavaScript.」です。

拡張機能のスクリーンショット

screenshot
screenshot

AddJS拡張機能のCRXファイルをダウンロード

AddJS拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 AddJS AddJS
ID ikdcaklgiaookdchoncnfcidafmmlndm
公式URL https://chrome.google.com/webstore/detail/addjs/ikdcaklgiaookdchoncnfcidafmmlndm
説明 This extension allows you to add your own custom website specific JavaScript.
ファイルサイズ 57.22 KB
インストール数 165
現在のバージョン 1.0
最終更新日 2017-01-19
公開日 2017-01-19
評価 5.00/5 合計 1 レビュー
開発者 http://mkhsoft.eu
支払い方法 free
対応言語 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:\/\/*\/"
    ]
}