Twitter Reporter

One-click report of tweets containing violence, racism & dissinformation content and track of Twitter feedback on reported content

Τι είναι το Twitter Reporter;

Το Twitter Reporter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον vayehee.com, και η κύρια λειτουργία του είναι "One-click report of tweets containing violence, racism & dissinformation content and track of Twitter feedback on reported content".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Twitter Reporter

Λήψη αρχείων επέκτασης Twitter Reporter σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Twitter Reporter is a browser tool for professionals and individuals who are focused on signaling content violation on Twitter.
The extension does 2 things:

1) Twitter Reporter cuts down content violation reports by automating the process. After installing the extension, you'll find a new "angry face" 😠 button next to the reply, retweet, like buttons under every tweet. Clicking the "angry face" 😠 button will open a popup menu with all types of content violations on Twitter. Simply choose the right one and Twitter reporter will automatically follow the correct reporting process cutting reporting time from ~35 seconds / tweet to about 3 seconds / tweet.

2) Twitter Reporter allows users to connect their own Google Sheet where they can keep track of all the reported content they filed to Twitter as well as the results of the process decided by Twitter (active/removed/account suspended), accompanied with useful statistics.

Twitter Reporter was developed with privacy and security at TOP priority. The extension does not require access to the user's Twitter account or an authorization to a Twitter API app. Everything is done locally on your browser!                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Twitter Reporter Twitter Reporter
ID bngmeppjlfgakgbdelcinhkbjkljpfjm
Επίσημο URL https://chrome.google.com/webstore/detail/twitter-reporter/bngmeppjlfgakgbdelcinhkbjkljpfjm
Περιγραφή One-click report of tweets containing violence, racism & dissinformation content and track of Twitter feedback on reported content
Μέγεθος Αρχείου 61.88 KB
Αριθμός Εγκαταστάσεων 32
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2020-03-19
Ημερομηνία Δημοσίευσης 2020-01-14
Προγραμματιστής vayehee.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitter Reporter",
    "description": "One-click report of tweets containing violence, racism & dissinformation content and track of Twitter feedback on reported content",
    "version": "1.0",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_title": "Twitter Reporter",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "identity",
        "storage"
    ],
    "content_scripts": [
        {
            "js": [
                "js\/smtp.js",
                "js\/jquery-3.4.1.min.js",
                "js\/content.js",
                "js\/dropdown.js"
            ],
            "css": [
                "css\/dropdown.css"
            ],
            "matches": [
                "https:\/\/www.twitter.com\/*",
                "https:\/\/twitter.com\/*",
                "https:\/\/mobile.twitter.com\/*"
            ],
            "run_at": "document_start"
        },
        {
            "js": [
                "js\/reporters\/main_reporter.js"
            ],
            "matches": [
                "https:\/\/www.twitter.com\/*",
                "https:\/\/twitter.com\/*",
                "https:\/\/mobile.twitter.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "page": "background\/background.html",
        "persistent": false
    }
}