Youtubeフィルタ

Youtubeフィルタ

Youtubeとgoogle検索にフィルタ機能を追加するChrome拡張です。「チャンネル及びタイトル指定での動画フィルタ」「コメントフィルタ」「自動再生の無効化」が行えます。

Merlin
Additional files are visible only to premium users

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.min.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/filter_base.js",
        "js/contextmenu_controller.js",
        "js/contextmenu_controller_google.js",
        "js/contextmenu_controller_youtube.js",
        "js/google_filter.js",
        "js/youtube_24feb_ui_disabler.js",
        "js/youtube_comment_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検索にフィルタ機能を追加するChrome拡張です。「チャンネル及びタイトル指定での動画フィルタ」「コメントフィルタ」「自動再生の無効化」が行えます。",
  "icons": {
    "19": "img/badge_on.png",
    "48": "img/icon_48.png"
  },
  "manifest_version": 2,
  "name": "Youtubeフィルタ",
  "author": "lvnkae",
  "permissions": [
    "storage",
    "contextMenus",
    "https://www.youtube.com/*"
  ],
  "short_name": "YoutubeFilter",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.8.2"
}