Twitter Stress Reduction

Twitter Stress Reduction

Twitter Stress Reduction란 무엇입니까?

Twitter Stress Reduction은(는) https://shirouzu.jp에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Twitter Stress Reduction"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        A mini tool to use Twitter comfortably.
- Hide 'ForYou/Trending/What's happened/etc' entries.
- Fold/Unfold button for tweet image.                    

확장 프로그램 기본 정보

이름 Twitter Stress Reduction Twitter Stress Reduction
ID ipnjgahnocpaefhffbnnjonihlihoeic
공식 URL https://chromewebstore.google.com/detail/twitter-stress-reduction/ipnjgahnocpaefhffbnnjonihlihoeic
설명 Twitter Stress Reduction
파일 크기 49.66 KB
설치 횟수 14,213
현재 버전 0.3.5.1
최근 업데이트 2024-01-09
출시 날짜 2020-06-02
평점 4.89/5 총 38 개의 평점
개발자 https://shirouzu.jp
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://shirouzu.jp/tech/twitter-stress-reduction
도움말 페이지 URL https://groups.google.com/g/twitter-stress-reduction
지원되는 언어 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_desc__",
    "manifest_version": 2,
    "version": "0.3.5.1",
    "description": "__MSG_desc__",
    "default_locale": "ja",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/mobile.twitter.com\/*"
            ],
            "js": [
                "tw_fold.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "tw16.png",
        "default_title": "Twitter Stress Reduction"
    },
    "background": {
        "scripts": [
            "tw_background.js"
        ]
    },
    "options_ui": {
        "page": "tw_fold.html",
        "open_in_tab": true
    },
    "web_accessible_resources": [
        "tw_fold.html"
    ],
    "icons": {
        "16": "tw16.png",
        "48": "tw48.png",
        "128": "tw128.png"
    },
    "permissions": [
        "https:\/\/twitter.com\/*",
        "https:\/\/mobile.twitter.com\/*",
        "contextMenus",
        "storage"
    ]
}