Filter Affinity

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

Filter Affinity क्या है?

Filter Affinity FWartist द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Filters out unwanted artists/images while browsing on Furaffinity.net"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Filter Affinity एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
            ]
        }
    ]
}