Filter Affinity

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

Filter Affinityคืออะไร?

Filter Affinity เป็นส่วนขยายของ Chrome ที่พัฒนาโดย FWartist และคุณลักษณะหลักของมันคือ "Filters out unwanted artists/images while browsing on Furaffinity.net"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Filter Affinity

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
            ]
        }
    ]
}