JButton

JavaScript at your fingertips.

What is JButton?

JButton is a Chrome extension developed by Drew McMurry, and its main feature is "JavaScript at your fingertips.".

Extension Screenshots

screenshot

Download JButton Extension CRX File

Download JButton extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name JButton JButton
ID apggbocnogkahecnoebchhpadaijemga
Official URL https://chrome.google.com/webstore/detail/jbutton/apggbocnogkahecnoebchhpadaijemga
Description JavaScript at your fingertips.
File Size 125 KB
Installation Count 164
Current Version 0.0.5
Last Updated 2019-03-08
Publish Date 2019-03-08
Rating 5.00/5 Total 1 Ratings
Developer Drew McMurry
Email [email protected]
Payment Type free
Supported Languages 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:\/\/*\/*"
    ]
}