扇贝单词图片搜索

扇贝单词图片搜索

背单词的时候,使用快捷键(默认为`i`)搜索当前单词对应的图片,帮助记忆

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "扇贝单词图片搜索",
  "description": "背单词的时候,使用快捷键(默认为`i`)搜索当前单词对应的图片,帮助记忆",
  "version": "1.1.1",
  "content_scripts": [
    {
      "matches": [
        "https://www.shanbay.com/bdc/review/",
        "https://www.shanbay.com/review/learning/*"
      ],
      "js": [
        "main.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "declarativeContent",
    "storage"
  ],
  "page_action": {
    "default_icon": "images/icon19.png",
    "default_popup": "popup/popup.html"
  },
  "icons": {
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  }
}