YouTube Spam Remover
Hides most YouTube spam comments
YouTube Spam Removerとは何ですか?
YouTube Spam RemoverはLuke Pflibsen-Jonesによって開発されたChromeの拡張機能で、その主な機能は「Hides most YouTube spam comments」です。
拡張機能のスクリーンショット
YouTube Spam Remover拡張機能のCRXファイルをダウンロード
YouTube Spam Remover拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Detects spam comments and automatically hides them, protecting its users from spoofers, adult content pushers, and other annoyances.
If the add-on hides a comment you want to see, simply click the "Likely spam (+)" text and it will reveal the hidden comment (with the profile picture blurred just in case). Displaying the reason the comment was marked as spam can be disabled/enabled via the "spam reason labels" in the options menu. 拡張機能の基本情報
| 名前 | |
| ID | gmlbmlpbijkhcdhfaaimaehgjfjccffd |
| 公式URL | https://chromewebstore.google.com/detail/youtube-spam-remover/gmlbmlpbijkhcdhfaaimaehgjfjccffd |
| 説明 | Hides most YouTube spam comments |
| ファイルサイズ | 938 KB |
| インストール数 | 1,206 |
| 現在のバージョン | 2.1.0 |
| 最終更新日 | 2023-12-07 |
| 公開日 | 2022-02-03 |
| 評価 | 2.57/5 合計 7 レビュー |
| 開発者 | Luke Pflibsen-Jones |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/lukepfjo/YouTube-Spam-Remover |
| ヘルプページのURL | https://github.com/luketimothyjones/youtube-spam-remover/issues/ |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "YouTube Spam Remover",
"version": "2.1.0",
"description": "Hides most YouTube spam comments",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"permissions": [
"storage",
"unlimitedStorage"
],
"host_permissions": [
"https:\/\/yt3.ggpht.com\/*",
"https:\/\/raw.githubusercontent.com\/lukepfjo\/YouTube-Spam-Remover\/main\/src\/extern\/opennsfwjs\/model\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/watch*",
"https:\/\/youtube.com\/watch*"
],
"js": [
"yt-spam-remover.js",
"opennsfw.min.js",
"pixelmatch.min.js"
],
"css": [
"yt-spam-remover.css"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"yt-spam-remover-worker.js",
"opennsfw.min.js",
"pixelmatch.min.js",
"allowed-sites.json.gz"
],
"matches": [
"https:\/\/www.youtube.com\/*",
"https:\/\/youtube.com\/*"
]
}
],
"action": {
"default_icon": {
"16": "icon16.png",
"48": "icon48.png"
},
"default_popup": "gui\/ytsr-gui-tab.html"
},
"options_ui": {
"page": "gui\/ytsr-gui-options.html",
"browser_style": true
},
"background": {
"service_worker": "yt-spam-remover-background.js"
}
} | |