Examine source code of ブログフィルタ

Inspect and view changes in ブログフィルタ source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "background": {
    "service_worker": "background_root.js"
  },
  "action": {
    "default_icon": {
      "19": "img/badge_on.png"
    },
    "default_popup": "html/popup.html",
    "default_title": "Blog Collection Filter",
    "name": "Blog Collection Filter"
  },
  "content_scripts": [
    {
      "js": [
        "js/jquery-3.3.1.min.js",
        "js/message_utility.js",
        "js/text_utility.js",
        "js/url_wrapper.js",
        "js/storage_data.js",
        "js/blog_utility.js",
        "js/filter_base.js",
        "js/contextmenu_controller.js",
        "js/contextmenu_controller_blogmura.js",
        "js/contextmenu_controller_livedoor.js",
        "js/contextmenu_controller_with2.js",
        "js/livedoor_filter.js",
        "js/blogmura_filter.js",
        "js/with2_filter.js",
        "js/content.js"
      ],
      "matches": [
        "https://blog.livedoor.com/*",
        "https://*.blogmura.com/*",
        "https://blog.with2.net/*"
      ],
      "run_at": "document_start"
    }
  ],
  "description": "ブログランキング・更新情報にフィルタ機能を追加するChrome拡張です。「URL指定/ワード指定でのブログフィルタ」が行えます。",
  "icons": {
    "19": "img/badge_on.png",
    "48": "img/icon_48.png"
  },
  "manifest_version": 3,
  "name": "ブログフィルタ",
  "author": "lvnkae",
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "short_name": "BlogCollectionFilter",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.0.1"
}