Japanese Buying Service Helper

Japanese Buying Service Helper

Quickly buy products from Japanese shops via White Rabbit Express

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Japanese Buying Service Helper",
  "version": "0.1.2",
  "description": "Quickly buy products from Japanese shops via White Rabbit Express",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "img/icon19.png",
      "38": "img/icon38.png"
    }
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "scripts": [
      "js/jquery.min.js",
      "js/common.js",
      "js/bg.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/jquery.min.js",
        "js/accounting.min.js",
        "js/mousetrap.min.js",
        "js/common.js",
        "js/content.js"
      ],
      "css": [
        "css/content.css"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "sitelist.json",
    "img/express-btn.png"
  ]
}