Quick Get QR & Short URL

Quick Get QR & Short URL

ブラウザのURLや好きな文字列をQRコードにリアルタイムで変換。 ボタン一つで bitly の 短縮URL の生成。 bitly のアクセストークンはオプション画面から設定可能。…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "version": "2.0",
  "description": "",
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icon19.png"
    },
    "default_popup": "popup.html"
  },
  "options_page": "options.html",
  "default_locale": "ja",
  "permissions": [
    "tabs",
    "clipboardWrite",
    "storage",
    "contextMenus"
  ],
  "icons": {
    "16": "images/icon19.png",
    "48": "images/icon19.png",
    "128": "images/icon19.png"
  },
  "content_security_policy": "script-src 'self' https://api-ssl.bitly.com; object-src 'self'"
}