Hide Verified Twitter Users

A Chrome extension that hides verified Twitter users' posts.

Hide Verified Twitter Users란 무엇입니까?

Hide Verified Twitter Users은(는) sardistic에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Chrome extension that hides verified Twitter users' posts."입니다.

확장 프로그램 스크린샷

screenshot

Hide Verified Twitter Users 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Chrome Extension: Hide Verified Posts
This Chrome extension allows you to toggle hiding verified posts on Twitter. When the extension is active, it will hide all tweets from verified users.

How to use
Install the extension in your Chrome browser.
Click on the extension icon in the toolbar to toggle between hiding and showing verified posts.
The extension will automatically update the display of tweets on the current page according to your preference (hide/show verified posts).

This is a very crude extension that sometimes produces errors, but works enough for my purposes. If you'd like to update or change any of the code, it is published on GitHub here:

https://github.com/sardistic/Hide-Verified-Twitter-Users                    

확장 프로그램 기본 정보

이름 Hide Verified Twitter Users Hide Verified Twitter Users
ID egpeogmkamgdmolhpkajgnoookedcghb
공식 URL https://chromewebstore.google.com/detail/hide-verified-twitter-use/egpeogmkamgdmolhpkajgnoookedcghb
설명 A Chrome extension that hides verified Twitter users' posts.
파일 크기 7.72 KB
설치 횟수 62
현재 버전 1.0
최근 업데이트 2023-04-27
출시 날짜 2023-04-26
평점 2.00/5 총 1 개의 평점
개발자 sardistic
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.sardistic.com
도움말 페이지 URL https://ko-fi.com/sardistic
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Hide Verified Twitter Users",
    "version": "1.0",
    "description": "A Chrome extension that hides verified Twitter users' posts.",
    "icons": {
        "48": "icon.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "48": "icon.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "activeTab",
        "scripting",
        "storage"
    ]
}