Twitter Timeline Eradicator

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

Co je Twitter Timeline Eradicator?

Twitter Timeline Eradicator je rozšíření Chrome vyvinuté Bryan, a jeho hlavní funkcí je „This extension removes timelines from twitter, to help you avoid mindless consumption.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Twitter Timeline Eradicator

Stáhněte si soubory rozšíření Twitter Timeline Eradicator ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Twitter Timeline Eradicator Twitter Timeline Eradicator
ID olmgbkhifmcfpaagiaakihcgobdkmchl
Oficiální URL https://chromewebstore.google.com/detail/twitter-timeline-eradicat/olmgbkhifmcfpaagiaakihcgobdkmchl
Popis This extension removes timelines from twitter, to help you avoid mindless consumption.
Velikost souboru 40.07 KB
Počet instalací 1,073
Aktuální Verze 2.0.1
Poslední Aktualizace 2020-07-20
Datum Vydání 2020-07-03
Hodnocení 4.42/5 Celkem 19 Hodnocení
Vývojář Bryan
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/bryanbraun/twitter-timeline-eradicator
URL Stránky Nápovědy https://github.com/bryanbraun/twitter-timeline-eradicator/issues
Podporované Jazyky 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"
    ]
}