Read Only Twitter

Enhance your Twitter experience by preventing yourself from actually interacting.

Read Only Twitter란 무엇입니까?

Read Only Twitter은(는) TheCleric에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enhance your Twitter experience by preventing yourself from actually interacting."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        By not interacting you're less likely to get sucked into useless arguments, which will make you happier in the long run.

Allow your Twitter stream to flow past you, and then let it go.

Options to disable tweets, retweets, likes, and direct messages.                    

확장 프로그램 기본 정보

이름 Read Only Twitter Read Only Twitter
ID cemhfjoonebpbnddchcopobdgdngnhdl
공식 URL https://chromewebstore.google.com/detail/read-only-twitter/cemhfjoonebpbnddchcopobdgdngnhdl
설명 Enhance your Twitter experience by preventing yourself from actually interacting.
파일 크기 164 KB
설치 횟수 56
현재 버전 1.0.1
최근 업데이트 2020-08-24
출시 날짜 2020-08-21
평점 5.00/5 총 3 개의 평점
개발자 TheCleric
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/TheCleric/ReadOnlyTwitter
도움말 페이지 URL https://github.com/TheCleric/ReadOnlyTwitter
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Read Only Twitter",
    "version": "1.0.1",
    "description": "Enhance your Twitter experience by preventing yourself from actually interacting.",
    "manifest_version": 2,
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "readOnlyTwitterOptions.html",
        "open_in_tab": false
    },
    "browser_action": {
        "default_popup": "readOnlyTwitterOptions.html",
        "default_icon": {
            "128": "icons\/ReadOnlyTwitter128.png",
            "512": "icons\/ReadOnlyTwitter.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "readOnlyTwitter.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/cdnjs.cloudflare.com https:\/\/www.googletagmanager.com; object-src 'self'",
    "icons": {
        "128": "icons\/ReadOnlyTwitter128.png",
        "512": "icons\/ReadOnlyTwitter.png"
    }
}