Twitter Timeline Eradicator

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

Wat is Twitter Timeline Eradicator?

Twitter Timeline Eradicator is een Chrome-extensie ontwikkeld door Bryan, en de belangrijkste functie is "This extension removes timelines from twitter, to help you avoid mindless consumption.".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Twitter Timeline Eradicator

Download Twitter Timeline Eradicator-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Twitter Timeline Eradicator Twitter Timeline Eradicator
ID olmgbkhifmcfpaagiaakihcgobdkmchl
Officiële URL https://chromewebstore.google.com/detail/twitter-timeline-eradicat/olmgbkhifmcfpaagiaakihcgobdkmchl
Beschrijving This extension removes timelines from twitter, to help you avoid mindless consumption.
Bestandsgrootte 40.07 KB
Aantal Installaties 1,073
Huidige Versie 2.0.1
Laatst Bijgewerkt 2020-07-20
Publicatiedatum 2020-07-03
Beoordeling 4.42/5 Totaal 19 Beoordelingen
Ontwikkelaar Bryan
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/bryanbraun/twitter-timeline-eradicator
Help Pagina-URL https://github.com/bryanbraun/twitter-timeline-eradicator/issues
Ondersteunde Talen 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"
    ]
}