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
官方網址 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
電子郵箱 [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"
            ]
        }
    ]
}