Open with Pennywise

Open with Pennywise

Adds a context menu item that can send a url to Pennywise

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Open with Pennywise",
  "author": "Alex Ward ([email protected])",
  "homepage_url": "https://github.com/alxwrd/open-with-pennywise",
  "version": "1.2",
  "description": "Adds a context menu item that can send a url to Pennywise",
  "browser_action": {
    "default_area": "navbar",
    "default_icon": {
      "16": "icon/pennywise-16.png",
      "32": "icon/pennywise-32.png",
      "48": "icon/pennywise-48.png"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "tabs",
    "contextMenus",
    "webRequest",
    "*://localhost:6280/*"
  ],
  "icons": {
    "16": "icon/pennywise-16.png",
    "32": "icon/pennywise-32.png",
    "48": "icon/pennywise-48.png"
  }
}