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
电子邮箱 [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:\/\/*\/*"
    ]
}