QRURL

QRURL

Create QR Url For Current URL生成当前页面的二维码,便于手机查看

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "QRURL",
  "version": "1.2.7",
  "manifest_version": 2,
  "description": "Create QR Url For Current URL生成当前页面的二维码,便于手机查看",
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "page_action": {
    "default_icon": {
      "19": "images/icon-19.png",
      "38": "images/icon-38.png"
    },
    "default_title": "QRURL当前网页二维码",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "history",
    "management",
    "http://*/*",
    "https://*/*"
  ]
}