俄罗斯方块

俄罗斯方块

俄罗斯方块

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "俄罗斯方块",
  "version": "1.0.0",
  "manifest_version": 2,
  "description": "俄罗斯方块",
  "icons": {
    "128": "icon.png"
  },
  "browser_action": {
    "default_title": "",
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "options_page": "",
  "background": {
    "persistent": false,
    "scripts": [
      "jquery-3.2.1.js",
      "background.js"
    ]
  },
  "web_accessible_resources": [
    "jquery-3.2.1.js"
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'"
}