루리웹 댓글 트랙커

루리웹 댓글 트랙커

루리웹 댓글 트랙커

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDescription__",
  "version": "0.1.4",
  "manifest_version": 2,
  "icons": {
    "16": "images/r-icon-16.png",
    "128": "images/r-icon-128.png"
  },
  "default_locale": "ko",
  "background": {
    "scripts": [
      "scripts/background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": {
      "19": "images/r-icon-19.png",
      "38": "images/r-icon-38.png"
    },
    "default_title": "__MSG_appName__",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.ruliweb.com/*"
      ],
      "js": [
        "scripts/vendor/jquery-2.1.4.min.js",
        "scripts/contentscript.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "webNavigation",
    "notifications",
    "*://*.ruliweb.com/*"
  ]
}