XOCollage

XOCollage

クソコラを作ろう!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "version": "1.0.1",
  "description": "__MSG_extDescription__",
  "default_locale": "ja",
  "browser_action": {
    "default_title": "XOCollage",
    "default_icon": "icon128.png",
    "default_popup": "html/popup.html"
  },
  "background": {},
  "options_page": "html/pref.html",
  "web_accessible_resources": [
    "img/*",
    "css/*",
    "html/image_loader.html"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "src/scriptaculous/prototype.js",
        "src/scriptaculous/effects.js",
        "src/scriptaculous/dragdrop.js",
        "src/xoc.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "permissions": [
    "contextMenus",
    "tabs",
    "unlimitedStorage",
    "background"
  ],
  "icons": {
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}