Twitter Timeline Eradicator

This extension removes timelines from twitter, to help you avoid mindless consumption.

Twitter Timeline Eradicator란 무엇입니까?

Twitter Timeline Eradicator은(는) Bryan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension removes timelines from twitter, to help you avoid mindless consumption."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        It hides the most addictive parts of Twitter, like the main timeline, the Explore timeline, moments, and Trending.
It shows the most useful parts of twitter, like notifications, user profiles, individual tweets, and DMs.                    

확장 프로그램 기본 정보

이름 Twitter Timeline Eradicator Twitter Timeline Eradicator
ID olmgbkhifmcfpaagiaakihcgobdkmchl
공식 URL https://chromewebstore.google.com/detail/twitter-timeline-eradicat/olmgbkhifmcfpaagiaakihcgobdkmchl
설명 This extension removes timelines from twitter, to help you avoid mindless consumption.
파일 크기 40.07 KB
설치 횟수 1,073
현재 버전 2.0.1
최근 업데이트 2020-07-20
출시 날짜 2020-07-03
평점 4.42/5 총 19 개의 평점
개발자 Bryan
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/bryanbraun/twitter-timeline-eradicator
도움말 페이지 URL https://github.com/bryanbraun/twitter-timeline-eradicator/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitter Timeline Eradicator",
    "description": "This extension removes timelines from twitter, to help you avoid mindless consumption.",
    "version": "2.0.1",
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/twitter.com\/"
    ],
    "browser_action": {
        "default_icon": "quiet-bird.png",
        "default_popup": "popup.html",
        "default_title": "Twitter Timeline Eradicator"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "clean.js"
            ],
            "css": [
                "default.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "enable-main-timeline.css",
        "enable-trending.css"
    ]
}