中国诗词欣赏

中国诗词欣赏

随机显示唐诗宋词

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "中国诗词欣赏",
  "version": "0.0.5",
  "description": "随机显示唐诗宋词",
  "icons": {
    "32": "img/icon.png",
    "64": "img/icon.png",
    "128": "img/icon.png"
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.google.com/"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ],
  "chrome_url_overrides": {
    "newtab": "pages/newtab.html"
  },
  "browser_action": {
    "default_popup": "pages/popup.html",
    "default_icon": {
      "32": "img/icon.png",
      "64": "img/icon.png",
      "128": "img/icon.png"
    }
  },
  "web_accessible_resources": [
    "data/*.json",
    "img/pinned.png",
    "img/unpin.png"
  ],
  "options_page": "pages/options.html"
}