Flexpad

Flexpad

Select a text and open a Wikipedia pop up right inside your page, support Google Translation and Oxford Dictionaries

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Flexpad",
  "homepage_url": "http://localhost:8080/",
  "description": "Select a text and open a Wikipedia pop up right inside your page, support Google Translation and Oxford Dictionaries",
  "default_locale": "en",
  "version": "0.1.2",
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "Flexpad",
    "default_icon": {
      "19": "icons/19.png",
      "38": "icons/38.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content-script.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "content_security_policy": "script-src 'self' ; object-src 'self'"
}