Open in GPlayStore

Open in GPlayStore

Add a context menu option to open play store page with selected text as a package name

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Open in Playstore",
  "description": "Add a context menu option to open selected text in play store",
  "version": "1.1",
  "homepage_url": "https://github.com/eybisi/firefox-playstore-extension",
  "background": {
    "scripts": [
      "open.js"
    ]
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "clipboardRead"
  ],
  "commands": {
    "open-playstore": {
      "suggested_key": {
        "default": "Ctrl+Shift+U",
        "linux": "Ctrl+Shift+U"
      },
      "description": "Open playstore+clipboard in new tab"
    }
  }
}