NoFT

Chrome extension to auto-block NFT profile pictures on Twitter

NoFT란 무엇입니까?

NoFT은(는) Ottomated에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome extension to auto-block NFT profile pictures on Twitter"입니다.

확장 프로그램 스크린샷

screenshot

NoFT 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Tired of seeing hexagonal profile pictures? This extension automatically blocks or mutes every user that you come across with a verified NFT profile picture.                    

확장 프로그램 기본 정보

이름 NoFT NoFT
ID ignbemmolegaffpapcfpbadjnijbalfl
공식 URL https://chromewebstore.google.com/detail/noft/ignbemmolegaffpapcfpbadjnijbalfl
설명 Chrome extension to auto-block NFT profile pictures on Twitter
파일 크기 139 KB
설치 횟수 4,506
현재 버전 1.0.2
최근 업데이트 2022-01-30
출시 날짜 2022-01-22
평점 4.78/5 총 59 개의 평점
개발자 Ottomated
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://get.mogultv.org/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "NoFT",
    "version": "1.0.2",
    "description": "Chrome extension to auto-block NFT profile pictures on Twitter",
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "permissions": [
        "storage",
        "alarms",
        "cookies"
    ],
    "host_permissions": [
        "*:\/\/*.twitter.com\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "content\/import-index.js"
            ],
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ]
        }
    ],
    "options_page": "pages\/popup\/index.html",
    "action": {
        "default_popup": "pages\/popup\/index.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "content\/closeInfoPopup.js",
                "content\/autoBlock.js"
            ],
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ]
        },
        {
            "resources": [
                "chunks\/*-*.js",
                "content\/index.js"
            ],
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ]
        }
    ]
}