짤줍

짤줍

이미지를 주워봅시다.^^

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "짤줍",
  "description": "이미지를 주워봅시다.^^",
  "short_name": "현재페이지의 이미지를 주워봅시다.",
  "version": "1.0.26",
  "manifest_version": 2,
  "permissions": [
    "activeTab",
    "storage"
  ],
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "browser_action": {
    "default_title": "짤줍"
  },
  "icons": {
    "32": "images/32_icon.png",
    "48": "images/48_icon.png",
    "128": "images/128_icon.png",
    "256": "images/256_icon.png"
  },
  "web_accessible_resources": [
    "html/*",
    "images/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "scripts/lib.js",
        "scripts/main.js"
      ],
      "css": [
        "styles/style.css"
      ],
      "run_at": "document_end"
    }
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+1",
        "mac": "Command+Shift+1",
        "chromeos": "Ctrl+Shift+1",
        "linux": "Ctrl+Shift+1"
      }
    }
  }
}