EASY LGTM

EASY LGTM

LGTMを手軽に

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "EASY LGTM",
  "description": "LGTMを手軽に",
  "version": "2.3",
  "manifest_version": 2,
  "icons": {
    "16": "icons/icon16.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "http://suikatyan.sakura.ne.jp/*"
  ],
  "background": {
    "scripts": [
      "js/lib/jquery.js",
      "js/common/Utilities.js",
      "js/backend/Storage.js",
      "js/backend/LgtmImage.js",
      "js/backend/ImageService.js",
      "js/backend/Backend.js",
      "js/backend/index.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*"
      ],
      "js": [
        "js/lib/jquery.js",
        "js/lib/jquery.color.js",
        "js/lib/vue.js",
        "js/common/Utilities.js",
        "js/frontend/Templater.js",
        "js/frontend/LgtmImage.js",
        "js/frontend/LgtmButton.js",
        "js/frontend/Frontend.js",
        "js/frontend/index.js"
      ],
      "css": [
        "css/main.css"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "templates/*"
  ]
}