瀏覽器閱讀輔助外掛Chinese Learning

瀏覽器閱讀輔助外掛Chinese Learning

選取某些字詞後,利用本外掛的各種功能進行語文輔助學習

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "瀏覽器閱讀輔助外掛Chinese Learning",
  "description": "選取某些字詞後,利用本外掛的各種功能進行語文輔助學習",
  "version": "6.3",
  "icons": {
    "64": "icons/speak.png"
  },
  "browser_action": {
    "default_icon": {
      "64": "icons/speak.png"
    },
    "default_popup": "action/index.html",
    "default_title": "瀏覽器閱讀輔助外掛"
  },
  "options_ui": {
    "page": "option/index.html"
  },
  "permissions": [
    "storage",
    "contextMenus",
    "activeTab"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "web_accessible_resources": [
    "*.js",
    "*.css",
    "*.png"
  ]
}