Examine source code of Youtubeフィルタ

Inspect and view changes in Youtubeフィルタ 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": {
    "persistent": true,
    "scripts": [
      "js/url_wrapper.js",
      "js/message_utility.js",
      "js/bg_message_sender.js",
      "js/bg_video_json_accessor.js",
      "js/bg_videos_xml_accessor.js",
      "js/bg_channel_html_accessor.js",
      "js/bg_video_searcher.js",
      "js/bg_playlist_searcher.js",
      "js/bg_contextmenu_controller.js",
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "img/badge_on.png"
    },
    "default_popup": "html/popup.html",
    "default_title": "Youtube Filter",
    "name": "Youtube Filter"
  },
  "content_scripts": [
    {
      "js": [
        "js/jquery-3.3.1.js",
        "js/message_utility.js",
        "js/text_utility.js",
        "js/url_wrapper.js",
        "js/html_utility.js",
        "js/storage_data.js",
        "js/google_utility.js",
        "js/youtube_utility.js",
        "js/author_info_accessor.js",
        "js/video_info_accessor.js",
        "js/channel_info_accessor.js",
        "js/video_searcher.js",
        "js/playlist_searcher.js",
        "js/youtube_data_counter.js",
        "js/filter_base.js",
        "js/contextmenu_controller.js",
        "js/contextmenu_controller_google.js",
        "js/contextmenu_controller_youtube.js",
        "js/youtube_filtering_util.js",
        "js/google_filter.js",
        "js/youtube_24feb_ui_disabler.js",
        "js/youtube_comment_filter.js",
        "js/youtube_shorts_filter.js",
        "js/youtube_filter.js",
        "js/content.js"
      ],
      "matches": [
        "https://www.youtube.com/*",
        "http://www.youtube.com/*",
        "https://www.google.com/*",
        "http://www.google.com/*",
        "https://www.google.co.jp/*",
        "http://www.google.co.jp/*"
      ],
      "run_at": "document_start"
    }
  ],
  "description": "Youtubeとgoogle検索にフィルタ機能を追加するアドオンです。「チャンネル及びタイトル指定での動画フィルタ」「コメントフィルタ」「自動再生の無効化」が行えます。",
  "icons": {
    "19": "img/badge_on.png",
    "48": "img/icon_48.png"
  },
  "applications": {
    "gecko": {
      "id": "youtube-filter@id-for-storage"
    }
  },
  "manifest_version": 2,
  "name": "Youtubeフィルタ",
  "permissions": [
    "storage",
    "contextMenus",
    "https://www.youtube.com/*"
  ],
  "short_name": "YoutubeFilter",
  "version": "1.0.5.6"
}