5ch Stylish

5ch Stylish

5chを使いやすくする拡張

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "5ch Stylish",
  "description": "5chを使いやすくする拡張",
  "version": "0.0.18",
  "options_page": "options.html",
  "browser_action": {
    "default_title": "5ch Stylish",
    "default_popup": "popup.html"
  },
  "icons": {
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "background": {
    "persistent": true,
    "scripts": [
      "js/background.js"
    ]
  },
  "permissions": [
    "tabs",
    "storage",
    "webRequest",
    "webRequestBlocking",
    "http://*.5ch.net/*",
    "https://*.5ch.net/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*.5ch.net/*",
        "https://*.5ch.net/*"
      ],
      "js": [
        "js/content_scripts.js"
      ],
      "css": [
        "css/content_scripts.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "images/*.gif"
  ]
}