Hanteki

Hanteki

Play 'Android netrunner' in Korean at 'jinteki.net'!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Hanteki",
  "description": "Play 'Android netrunner' in Korean at 'jinteki.net'!",
  "version": "1.1.0",
  "icons": {
    "48": "on.png"
  },
  "page_action": {
    "default_icon": "on.png",
    "default_title": "Enjoy Hanteki!"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "https://www.jinteki.net/*"
      ],
      "css": [
        "card-text.css"
      ],
      "js": [
        "jquery-1.7.1.min.js",
        "text.js",
        "translate.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "activeTab",
    "declarativeContent",
    "https://www.jinteki.net/*"
  ],
  "commands": {
    "_execute_page_action": {
      "suggested_key": {
        "default": "Ctrl+E",
        "windows": "Ctrl+E",
        "mac": "Ctrl+E"
      }
    }
  }
}