Twitter Timeline Eradicator

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

Co to jest Twitter Timeline Eradicator?

Twitter Timeline Eradicator to rozszerzenie Chrome opracowane przez Bryan, a jego główną funkcją jest „This extension removes timelines from twitter, to help you avoid mindless consumption.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Twitter Timeline Eradicator

Pobierz pliki rozszerzeń Twitter Timeline Eradicator w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Twitter Timeline Eradicator Twitter Timeline Eradicator
ID olmgbkhifmcfpaagiaakihcgobdkmchl
Oficjalny URL https://chromewebstore.google.com/detail/twitter-timeline-eradicat/olmgbkhifmcfpaagiaakihcgobdkmchl
Opis This extension removes timelines from twitter, to help you avoid mindless consumption.
Rozmiar pliku 40.07 KB
Liczba instalacji 1,073
Aktualna Wersja 2.0.1
Ostatnia Aktualizacja 2020-07-20
Data Publikacji 2020-07-03
Ocena 4.42/5 Łącznie 19 Oceny
Deweloper Bryan
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/bryanbraun/twitter-timeline-eradicator
Adres URL Strony Pomocy https://github.com/bryanbraun/twitter-timeline-eradicator/issues
Obsługiwane Języki 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"
    ]
}