TRAB - Tweet Reporter And Blocker

Gives you a one-click way to report a tweet as spam and block the creator's account

Vad är TRAB - Tweet Reporter And Blocker?

TRAB - Tweet Reporter And Blocker är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "Gives you a one-click way to report a tweet as spam and block the creator's account".

Tilläggsskärmbilder

screenshot

Ladda ner TRAB - Tweet Reporter And Blocker-förlängningens CRX-fil

Ladda ner TRAB - Tweet Reporter And Blocker-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Inspired by this tweet: https://twitter.com/paulg/status/1496549841912094733

This chrome extension gives Twitter users a convenient way to do two things with a single click: (a) Block the tweet creator, and (b) Report the tweet as spam                    

Grundläggande Information om Tillägg

Namn TRAB - Tweet Reporter And Blocker TRAB - Tweet Reporter And Blocker
ID bahkpblcfiffamfljnfjeablplgnjnkg
Officiell webbadress https://chromewebstore.google.com/detail/trab-tweet-reporter-and-b/bahkpblcfiffamfljnfjeablplgnjnkg
Beskrivning Gives you a one-click way to report a tweet as spam and block the creator's account
Filstorlek 35.3 KB
Antal Installationer 15
Aktuell Version 1.0
Senast Uppdaterad 2022-02-27
Publiceringsdatum 2022-02-26
Betyg 1.00/5 Totalt 1 Betyg
Utvecklare Unknown
E-post [email protected]
Betalningssätt free
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TRAB - Tweet Reporter And Blocker",
    "description": "Gives you a one-click way to report a tweet as spam and block the creator's account",
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/twitter.com\/*",
                "https:\/\/twitter.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "jquery-3.6.0.min.js",
                "script.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "manifest_version": 3
}