Filter Affinity

Filters out unwanted artists/images while browsing on Furaffinity.net

Filter Affinityとは何ですか?

Filter AffinityはFWartistによって開発されたChromeの拡張機能で、その主な機能は「Filters out unwanted artists/images while browsing on Furaffinity.net」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Filter Affinity拡張機能のCRXファイルをダウンロード

Filter Affinity拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Ever been browsing all the great art on FurAffinity and come across something you didn't like?  Yeah, me too.  So I made this.

Welcome to Filter Affinity!

It filters out content based on artist names and keywords in the submission titles and short descriptions on the Home, Browse, Gallery and Search pages. If you wish to always display artwork by a certain artist, their names can be listed to allow to do just that.

Hovering over a submission thumbnail will show a Add/Remove option box. Clicking the plus(+) symbol adds the artist's name to the filter list automatically. Clicking the minus(-) symbol removes the artist from the filter list.

You can also filter by the submission rating, and even just block out the entire submission or just hide the thumbnail!  Easy!

No longer worry about scarring your eyes with material you'd rather not stumble across.  Try out Filter Affinity today!                    

拡張機能の基本情報

名前 Filter Affinity Filter Affinity
ID bcnniocfbnmaiakhpgpeicghfogdjfhe
公式URL https://chromewebstore.google.com/detail/filter-affinity/bcnniocfbnmaiakhpgpeicghfogdjfhe
説明 Filters out unwanted artists/images while browsing on Furaffinity.net
ファイルサイズ 17.85 KB
インストール数 958
現在のバージョン 1.5.7
最終更新日 2023-11-01
公開日 2019-06-02
評価 3.83/5 合計 18 レビュー
開発者 FWartist
Eメール [email protected]
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Filter Affinity",
    "short_name": "Filter Affinity",
    "description": "Filters out unwanted artists\/images while browsing on Furaffinity.net",
    "version": "1.5.7",
    "icons": {
        "128": "128icon.png"
    },
    "permissions": [
        "notifications",
        "storage",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background-script.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "128icon.png",
        "default_title": "Filter Affinity",
        "default_popup": "popup\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.furaffinity.net\/*"
            ],
            "run_at": "document_end",
            "js": [
                "content-script.js"
            ],
            "css": [
                "content-css.css"
            ]
        }
    ]
}