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
官方網址 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
電子郵箱 [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:\/\/*\/*"
    ]
}