pixiv Poplar Tag Illust Viewer

pixiv Poplar Tag Illust Viewer

pixivの「人気のタグ」のイラストを直接開く拡張機能です。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Cobalt",
  "name": "pixiv Poplar Tag Illust Viewer",
  "version": "1.0.1.0",
  "manifest_version": 2,
  "description": "pixivの「人気のタグ」のイラストを直接開く拡張機能です。",
  "browser_action": {
    "default_icon": "img/icon_16.png"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "matches": [
        "http://www.pixiv.net/*",
        "https://www.pixiv.net/*"
      ],
      "js": [
        "js/jquery.min.js"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "matches": [
        "http://www.pixiv.net/*",
        "https://www.pixiv.net/*"
      ],
      "js": [
        "js/main.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "img/icon_16.png",
    "19": "img/icon_19.png",
    "48": "img/icon_48.png",
    "128": "img/icon_128.png"
  }
}