Ragnarok Quick Starter

Ragnarok Quick Starter

This let users let start a client game program at Ragnarok online website just with one click at contextMenus.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "0.1.0.2",
  "permissions": [
    "activeTab",
    "contextMenus",
    "https://ro.gnjoy.com/index.asp"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://ro.gnjoy.com/*"
      ],
      "js": [
        "contents.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon64.png",
    "128": "images/icon.png"
  },
  "description": "__MSG_appDesc__",
  "commands": {
    "start_client": {
      "name": "hello",
      "suggested_key": "Ctrl+Shift+5",
      "description": "Start the client program. https://youtu.be/rirXMNu7Ovs"
    }
  },
  "default_locale": "en",
  "manifest_version": 2
}