Disable Twitter Feed

Removes the timeline on Twitter's homepage.

Apa itu Disable Twitter Feed?

Disable Twitter Feed adalah ekstensi Chrome yang dikembangkan oleh https://lukasrosenstock.net, dan fitur utamanya adalah "Removes the timeline on Twitter's homepage.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Disable Twitter Feed

Unduh file ekstensi Disable Twitter Feed dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        The Twitter timeline can be a rabbit-hole that hurts your productivity. Disable Twitter Feed is a minimalist, single-purpose add-on without any configuration options. It does one thing: removing the timeline on Twitter's homepage. All other functionality (e.g., private messages, opening individual profiles) remains intact.                    

Informasi Dasar Ekstensi

Nama Disable Twitter Feed Disable Twitter Feed
ID oppnglmfkpdfodnepgilhcagbbdojekd
URL Resmi https://chromewebstore.google.com/detail/disable-twitter-feed/oppnglmfkpdfodnepgilhcagbbdojekd
Deskripsi Removes the timeline on Twitter's homepage.
Ukuran File 8 KB
Jumlah Instalasi 388
Versi Saat Ini 1.0
Terakhir Diperbarui 2020-12-04
Tanggal Publikasi 2020-12-03
Penilaian 5.00/5 Total 2 Penilaian
Pengembang https://lukasrosenstock.net
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Disable Twitter Feed",
    "version": "1.0",
    "description": "Removes the timeline on Twitter's homepage.",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "js": [
                "disablefeed.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "48": "icon.png",
        "96": "[email protected]"
    }
}