Yet Twitter - Minimal Twitter Theme

Customize your Twitter experience

Yet Twitter - Minimal Twitter Theme란 무엇입니까?

Yet Twitter - Minimal Twitter Theme은(는) Eunjae Lee에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Customize your Twitter experience"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Yet Twitter - Minimal Twitter Theme 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        - Do you miss the old Twitter logo?
- Would you like to mute a specific account for X days?
- Want to hide tweets from accounts with the Blue verified mark?
- Do you want to block a huge list of users?                    

확장 프로그램 기본 정보

이름 Yet Twitter - Minimal Twitter Theme Yet Twitter - Minimal Twitter Theme
ID nglkbfgmfiojfiopeamadheagaiaofnb
공식 URL https://chromewebstore.google.com/detail/yet-twitter-minimal-twitt/nglkbfgmfiojfiopeamadheagaiaofnb
설명 Customize your Twitter experience
파일 크기 389 KB
설치 횟수 62
현재 버전 0.1.2
최근 업데이트 2024-03-04
출시 날짜 2023-11-01
평점 5.00/5 총 1 개의 평점
개발자 Eunjae Lee
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/eunjae-lee/yet-twitter
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Yet Twitter - Minimal Twitter Theme",
    "version": "0.1.2",
    "description": "Customize your Twitter experience",
    "action": {
        "default_icon": ".\/assets\/icon-512.png",
        "default_popup": ".\/dist\/popup\/index.html"
    },
    "options_ui": {
        "page": ".\/dist\/options\/index.html",
        "open_in_tab": true
    },
    "background": {
        "service_worker": ".\/dist\/background\/index.mjs"
    },
    "icons": {
        "16": ".\/assets\/icon-512.png",
        "48": ".\/assets\/icon-512.png",
        "128": ".\/assets\/icon-512.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitter.com\/*",
                "*:\/\/*.x.com\/*"
            ],
            "js": [
                "dist\/contentScripts\/index.global.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "dist\/contentScripts\/style.css",
                "dist\/contentScripts\/injected.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}