Web2PttChrome

Web2PttChrome

Open the PTT Web article in PttChrome.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Web2PttChrome",
  "version": "1.2",
  "description": "Open the PTT Web article in PttChrome.",
  "icons": {
    "16": "icon_16.png",
    "128": "icon_128.png"
  },
  "default_locale": "en_US",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.ptt.cc/bbs/*",
        "*://iamchucky.github.io/PttChrome/*"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "contextMenus"
  ],
  "page_action": {
    "default_name": "Open in PttChrome",
    "default_icon": {
      "19": "icon_19.png",
      "38": "icon_38.png"
    }
  },
  "manifest_version": 2
}