JButton

JavaScript at your fingertips.

JButtonとは何ですか?

JButtonはDrew McMurryによって開発されたChromeの拡張機能で、その主な機能は「JavaScript at your fingertips.」です。

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

screenshot

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

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

拡張機能の使用方法

                        JButton is a developer tool for saving javascript into buttons for use on any website. The only limit is your ability to program.

Write your JButtons on the extension options page and they will appear in the JButton dropdown.

More features to come! Feedback and feature suggestions are always welcome! Happy interneting!

-Drew                    

拡張機能の基本情報

名前 JButton JButton
ID apggbocnogkahecnoebchhpadaijemga
公式URL https://chrome.google.com/webstore/detail/jbutton/apggbocnogkahecnoebchhpadaijemga
説明 JavaScript at your fingertips.
ファイルサイズ 125 KB
インストール数 164
現在のバージョン 0.0.5
最終更新日 2019-03-08
公開日 2019-03-08
評価 5.00/5 合計 1 レビュー
開発者 Drew McMurry
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JButton",
    "version": "0.0.5",
    "manifest_version": 2,
    "description": "JavaScript at your fingertips.",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/chromereload.js",
            "scripts\/background.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        },
        "default_title": "JButton",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "styles\/popup.css"
            ],
            "js": [
                "scripts\/popup.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "storage",
        "tabs",
        "management",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}