NSFW Filter
This extension allows the user to view only NSFW posts on Reddit.
NSFW Filterとは何ですか?
NSFW FilterはNSFWFilterによって開発されたChromeの拡張機能で、その主な機能は「This extension allows the user to view only NSFW posts on Reddit.」です。
拡張機能のスクリーンショット
NSFW Filter拡張機能のCRXファイルをダウンロード
NSFW Filter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
An NSFW FIlter that allows users to see NSFW content on Reddit. 拡張機能の基本情報
| 名前 | |
| ID | kcbhaaeppldaemnnbpoaloiogmenibmh |
| 公式URL | https://chrome.google.com/webstore/detail/nsfw-filter/kcbhaaeppldaemnnbpoaloiogmenibmh |
| 説明 | This extension allows the user to view only NSFW posts on Reddit. |
| ファイルサイズ | 7.94 KB |
| インストール数 | 425 |
| 現在のバージョン | 0.1 |
| 最終更新日 | 2017-10-24 |
| 公開日 | 2017-10-24 |
| 評価 | 3.50/5 合計 2 レビュー |
| 開発者 | NSFWFilter |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "NSFW Filter",
"description": "This extension allows the user to view only NSFW posts on Reddit.",
"version": "0.1",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"*:\/\/www.reddit.com\/*"
],
"js": [
".\/nsfw.js"
],
"run_at": "document_end"
}
]
} | |