Shooooty

Shooooty

Wherever you want, just shoot it.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Shooooty",
  "description": "Wherever you want, just shoot it.",
  "version": "1.1.2",
  "browser_action": {
    "default_icon": "imgs/icon.png",
    "default_popup": "popup.html",
    "default_title": "默认快捷键:Ctrl+Shift+Y"
  },
  "icons": {
    "16": "/imgs/icon.png",
    "48": "/imgs/icon.png",
    "128": "/imgs/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "scripts/jquery-2.1.4.js",
        "scripts/rifleman.js",
        "scripts/shooters.js"
      ],
      "css": [
        "css/project_style.css"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    "imgs/icon.jpg",
    "imgs/icon.png"
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+Y",
        "mac": "Command+Shift+Y",
        "chromeos": "Ctrl+Shift+U",
        "linux": "Ctrl+Shift+J"
      }
    }
  }
}