JButton

JavaScript at your fingertips.

Что такое JButton?

JButton - это расширение Chrome, разработанное Drew McMurry, и его основная функция - "JavaScript at your fingertips.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения JButton

Скачайте файлы расширений 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:\/\/*\/*"
    ]
}