Simplify Twitter

Reduces Twitter interface to the bare minimum

Simplify Twitter란 무엇입니까?

Simplify Twitter은(는) https://simpl.fyi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Reduces Twitter interface to the bare minimum"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Only simplifies the main feed and messages right now... more to do.                    

확장 프로그램 기본 정보

이름 Simplify Twitter Simplify Twitter
ID nmamhdcfoimpliccgjfchlglfhbelpmb
공식 URL https://chromewebstore.google.com/detail/simplify-twitter/nmamhdcfoimpliccgjfchlglfhbelpmb
설명 Reduces Twitter interface to the bare minimum
파일 크기 17.24 KB
설치 횟수 47
현재 버전 1.4.10
최근 업데이트 2024-02-16
출시 날짜 2022-12-20
개발자 https://simpl.fyi
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://simpl.fyi/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Simplify Twitter",
    "version": "1.4.10",
    "manifest_version": 3,
    "description": "Reduces Twitter interface to the bare minimum",
    "homepage_url": "https:\/\/simpl.fyi",
    "icons": {
        "128": "img\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ],
            "js": [
                "js\/util.js",
                "js\/constants.js",
                "js\/observers.js",
                "js\/main.js"
            ],
            "css": [
                "css\/style.css"
            ],
            "run_at": "document_start",
            "all_frames": false
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "img\/*"
            ],
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "default-src 'self'; style-src 'self'; script-src 'self'; img-src 'self'"
    }
}