Url Helper

Url Helper

a simple tool of url

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Url Helper",
  "version": "1.0",
  "description": "a simple tool of url",
  "icons": {
    "16": "images/logo-icon-30.png",
    "48": "images/logo-icon-100.png",
    "128": "images/logo-icon-100.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "images/logo-icon-30.png",
      "38": "images/logo-icon-30.png"
    },
    "default_title": "Url Helper",
    "default_popup": "popup.html"
  },
  "permissions": [
    "contextMenus"
  ],
  "web_accessible_resources": [
    "static/js/vue.js",
    "static/element-ui.js"
  ],
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}