RunWith

RunWith

Run external commands on contextual elements. Use hypertextual links, selected text and image URLs as arguments to external programs.

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "RunWith",
  "description": "Run external commands on contextual elements",
  "version": "0.19",
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "90.0"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "contentscript.js"
      ]
    }
  ],
  "options_ui": {
    "page": "settings/settings.html",
    "browser_style": true
  },
  "permissions": [
    "menus",
    "nativeMessaging",
    "storage",
    "tabs"
  ],
  "icons": {
    "16": "icons/runwith-16.png",
    "32": "icons/runwith-32.png",
    "48": "icons/runwith-48.png"
  }
}