相关法律法规

相关法律法规

谁还能没点精神洁癖?

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_app_name__",
  "description": "__MSG_app_description__",
  "version": "0.0.8",
  "author": "sheepzh",
  "default_locale": "en",
  "homepage_url": "https://github.com/sheepzh/regulation#readme",
  "manifest_version": 2,
  "browser_action": {
    "default_icon": "static/images/icon.png",
    "default_title": "__MSG_app_iconTitle__"
  },
  "icons": {
    "16": "static/images/icon.png",
    "48": "static/images/icon.png",
    "128": "static/images/icon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_scripts.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "permissions": [
    "storage"
  ]
}