Developers.IO編集アシスタント

Developers.IO編集アシスタント

Developers.IO編集者を少し助けてくれるChrome拡張です。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Developers.IO編集アシスタント",
  "short_name": "DevIO編集アシスト",
  "version": "0.1.0",
  "manifest_version": 2,
  "description": "Developers.IO編集者を少し助けてくれるChrome拡張です。",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://dev.classmethod.jp/wp-admin/post.php*",
        "https://dev.classmethod.jp/wp-admin/post-new.php*"
      ],
      "js": [
        "src/inject/filter.js"
      ]
    },
    {
      "matches": [
        "https://dev.classmethod.jp/wp-admin/post.php*",
        "https://dev.classmethod.jp/wp-admin/post-new.php*"
      ],
      "js": [
        "src/inject/check-syntax.js"
      ]
    }
  ]
}