CyboMonitor

CyboMonitor

サイボウズ(Cybozu)の報告書と掲示板への書き込みを監視

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "CyboMonitor",
  "version": "1.7",
  "description": "サイボウズ(Cybozu)の報告書と掲示板への書き込みを監視",
  "icons": {
    "48": "icons/icon_048.png",
    "128": "icons/icon_128.png"
  },
  "background": {
    "scripts": [
      "js/jquery.min.js",
      "js/background.js"
    ]
  },
  "permissions": [
    "https://*.cybozu.com/"
  ],
  "browser_action": {
    "default_icon": "icons/icon.png",
    "default_title": "Popup",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.cybozu.com/o/*"
      ],
      "css": [
        "css/content.css"
      ],
      "js": [
        "js/jquery.min.js",
        "js/content.js"
      ]
    }
  ],
  "options_page": "options.html"
}