유애나 크롬 플러그인

유애나 크롬 플러그인

아이유(IU) 공식 팬카페 「U愛나」를 크롬에서 편하게 쓸 수 있도록 도와줍니다.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "유애나 크롬 플러그인",
  "short_name": "Uaena",
  "description": "아이유(IU) 공식 팬카페 「U愛나」를 크롬에서 편하게 쓸 수 있도록 도와줍니다.",
  "version": "1.10",
  "author": "Crux",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icon19.png",
      "38": "images/icon38.png"
    },
    "default_title": "U愛나",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://cafe.daum.net/IU/*"
      ],
      "js": [
        "js/common.js",
        "js/helper.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "activeTab",
    "storage",
    "alarms",
    "http://api.m.cafe.daum.net/",
    "http://m.melon.com/"
  ],
  "web_accessible_resources": [
    "css/helper.css",
    "chat.html"
  ]
}