JSActions K

JSActions K

The extension for Firefox which adds the customizable menu item to the content area context menu.

Merlin
Additional files are visible only to premium users

manifest.json


// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.

{
    "manifest_version": 2,

    "name": "JSActions K",
    "version": "0.2.1",
    "applications": {
        "gecko": {
            "id": "{6FCC1566-47E3-47ca-AAD7-AA3320FF4717}",
            "strict_min_version": "56.0"
        }
    },

    "description": "Adds \"JSActions\" to content area context menu.",
    "icons": {
        "16": "icons/jsactions-16x16.png",
        "32": "icons/jsactions-32x32.png",
        "48": "icons/jsactions-48x48.png",
        "96": "icons/jsactions-96x96.png",
        "128": "icons/jsactions-128x128.png"
    },

    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },

    "permissions": [
        "<all_urls>",
        "activeTab",
        "clipboardRead",
        "clipboardWrite",
        "contextMenus",
        "nativeMessaging",
        "storage"
    ],

    "background": {
        "scripts": ["jsaevent.js", "event.js"]
    },

    "content_scripts": [
        {
            "matches": ["<all_urls>"],
            "match_about_blank": true,
            "js": ["jsacscript.js", "jsacontent.js", "content.js"],
            "all_frames": true
        }
    ]
}