5chのjump.5ch.netを排除するソフト

5chのjump.5ch.netを排除するソフト

5ch(2ch)では外部のリンクをクリックすると、 jump.5ch.netっていうドメインの広告ページが強制的に間に入ります。 このアドオンはjump.5ch.netの広告ページを省略するようにします。 bbspinkのpinktower.comも省略します

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "5chのjump.5ch.netを排除するソフト",
  "description": "5chのjump.5ch.netを排除するソフトです。",
  "version": "1.0.0",
  "icons": {
    "18": "icon.png"
  },
  "options_ui": {
    "page": "options.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.5ch.net/*",
        "*://*.pinktower.com/*"
      ],
      "js": [
        "contentscripts.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{023bedf0-41ea-4758-87e2-2bd4c90c56ae}"
    }
  }
}