remove-twitter-trends

Switches Twitter trending topics off

Apa itu remove-twitter-trends?

remove-twitter-trends adalah ekstensi Chrome yang dikembangkan oleh Andre Alves Garzia, dan fitur utamanya adalah "Switches Twitter trending topics off".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi remove-twitter-trends

Unduh file ekstensi remove-twitter-trends 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

                        This add-on removes the sidebar on Twitter website that contains the trending topics and who to follow sections. Many people I know have complained about mental health hazards seeing those trending topics. This add-on unlocks agency for the user as it permits them to block those items and have a cleaner Twitter experience.                    

Informasi Dasar Ekstensi

Nama remove-twitter-trends remove-twitter-trends
ID pdbaomfhmpcbdabjpjfpoehhjnphdoac
URL Resmi https://chromewebstore.google.com/detail/remove-twitter-trends/pdbaomfhmpcbdabjpjfpoehhjnphdoac
Deskripsi Switches Twitter trending topics off
Ukuran File 1.45 MB
Jumlah Instalasi 918
Versi Saat Ini 1.0.1
Terakhir Diperbarui 2021-12-31
Tanggal Publikasi 2021-12-31
Penilaian 3.43/5 Total 7 Penilaian
Pengembang Andre Alves Garzia
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "remove-twitter-trends",
    "description": "Switches Twitter trending topics off",
    "version": "1.0.1",
    "icons": {
        "64": "icons\/icon512.png"
    },
    "background": {
        "scripts": [
            "browser-polyfill.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "browser-polyfill.js",
                "mithril.js",
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options\/index.html"
    },
    "permissions": [
        "webNavigation",
        "storage"
    ]
}