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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
            ]
        }
    ]
}