5CH STYLE FORMAT

5CH STYLE FORMAT

5ちゃんねる(旧2ちゃんねる)のスレッド(記事)ページをすっきり整形&URL直リンク化、画像・レスのPOP表示等、いろいろ機能を付加します。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "5CH STYLE FORMAT",
  "version": "0.5.14",
  "action": {
    "default_icon": {
      "19": "img/icon19.png",
      "48": "img/icon48.png"
    },
    "default_popup": "popup.html"
  },
  "description": "5ちゃんねる(旧2ちゃんねる)のスレッド(記事)ページをすっきり整形&URL直リンク化、画像・レスのPOP表示等、いろいろ機能を付加します。",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "background": {
    "service_worker": "js/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.5ch.net/test/read.*/*/*"
      ],
      "css": [
        "css/reset.css",
        "css/ad_rewrite.css",
        "css/style_rewrite.css"
      ],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "options_page": "options.html",
  "permissions": [
    "contextMenus",
    "storage"
  ],
  "host_permissions": [
    "https://*.5ch.net/test/read.*/*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "font/webfont.woff",
        "img/logo.svg"
      ],
      "matches": [
        "https://*.5ch.net/*"
      ]
    }
  ]
}