Better Twitter

Hide what's not important on Twitter.com

Better Twitter란 무엇입니까?

Better Twitter은(는) Razvan Caliman에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hide what's not important on Twitter.com"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Bug reports and feature requests go here:
https://github.com/oslego/better-twitter/issues

Toggle these preferences on the extension's options page:

- No fame: Hide number of followers and following count
- No vanity: Hide number of tweet likes, retweets and replies
- Hide promoted tweets
- Hide retweets
- Hide tweets liked by others
- Hide “Trends for you”
- Hide “Who to follow”
- Hide website footer                    

확장 프로그램 기본 정보

이름 Better Twitter Better Twitter
ID illmpnnkeobcgnnjghammeohfjpjoljp
공식 URL https://chromewebstore.google.com/detail/better-twitter/illmpnnkeobcgnnjghammeohfjpjoljp
설명 Hide what's not important on Twitter.com
파일 크기 11.05 KB
설치 횟수 3,699
현재 버전 2.1.2
최근 업데이트 2023-01-16
출시 날짜 2020-06-03
평점 3.65/5 총 31 개의 평점
개발자 Razvan Caliman
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/oslego/better-twitter/
도움말 페이지 URL https://github.com/oslego/better-twitter/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Better Twitter",
    "version": "2.1.2",
    "description": "Hide what's not important on Twitter.com",
    "manifest_version": 2,
    "applications": {
        "gecko": {
            "id": "{ef32ca60-1728-4011-a585-4de439fe7ba7}"
        }
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false,
        "browser_style": true,
        "chrome_style": true
    },
    "icons": {
        "64": "icon-64.png",
        "128": "icon-128.png"
    },
    "browser_action": {
        "browser_style": true,
        "default_popup": "options.html"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        "options.js",
        "prefs.js"
    ],
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/mobile.twitter.com\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "utils.js",
                "prefs.js",
                "content.js"
            ]
        }
    ]
}