Clean Twitter

Remove all the annoying clutter from your Twitter.

Clean Twitter란 무엇입니까?

Clean Twitter은(는) dhaiwatpandya에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Remove all the annoying clutter from your Twitter."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Enhance your Twitter experience by removing some of the clutter.

Currently supported features:

1) No sidebars on the right (Trending hashtags, ads, follow recommendations, etc)
2) No metrics/numbers (Likes, RTs, replies, followers)

You can turn any of the features on and off at any time.

This extension is open-source (https://github.com/Dhaiwat10/clean-twitter) and 100% safe to use. It does not collect any information or store it.                    

확장 프로그램 기본 정보

이름 Clean Twitter Clean Twitter
ID ibcjnfhpdjinbcmojnmpnokcgfljiebb
공식 URL https://chromewebstore.google.com/detail/clean-twitter/ibcjnfhpdjinbcmojnmpnokcgfljiebb
설명 Remove all the annoying clutter from your Twitter.
파일 크기 98.75 KB
설치 횟수 306
현재 버전 0.3.0
최근 업데이트 2021-02-26
출시 날짜 2021-02-16
평점 4.00/5 총 4 개의 평점
개발자 dhaiwatpandya
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Dhaiwat10/clean-twitter
도움말 페이지 URL https://github.com/Dhaiwat10/clean-twitter/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Clean Twitter",
    "description": "Remove all the annoying clutter from your Twitter.",
    "version": "0.3.0",
    "icons": {
        "16": "icon.png",
        "32": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "js\/jquery.js",
                "js\/content.js",
                "js\/popup.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Clean Twitter",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs"
    ]
}