Accupass2KKTIX

Accupass2KKTIX

This extension help you copy data from accupass and then paste to KKTIX.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Accupass2KKTIX",
  "description": "This extension help you copy data from accupass and then paste to KKTIX.",
  "version": "1.0",
  "browser_action": {
    "default_icon": "icon-16.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "storage",
    "background"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.accupass.com/*",
        "https://kktix.com/*"
      ],
      "js": [
        "content_script.js",
        "jquery-3.2.1.min.js"
      ]
    }
  ],
  "icons": {
    "16": "icon-16.png",
    "128": "icon-128.png"
  },
  "background": {
    "scripts": [
      "store.js"
    ]
  }
}