Twitter account detector

This extension offers a quick way to show all twitter accounts from the page its on.

Τι είναι το Twitter account detector;

Το Twitter account detector είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://stapps.io, και η κύρια λειτουργία του είναι "This extension offers a quick way to show all twitter accounts from the page its on.".

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

screenshot

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

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

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

                        This extension helps you find Twitter/X accounts for the page its on so you can contact or follow them easily. 
Unofficial extension.

Feel free to contribute with code or ideas:
https://github.com/stilliard/Twitter-detector                    

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

Όνομα Twitter account detector Twitter account detector
ID papcdbgfejihdinhieggiamjnkclhkck
Επίσημο URL https://chromewebstore.google.com/detail/twitter-account-detector/papcdbgfejihdinhieggiamjnkclhkck
Περιγραφή This extension offers a quick way to show all twitter accounts from the page its on.
Μέγεθος Αρχείου 988 KB
Αριθμός Εγκαταστάσεων 1,247
Τρέχουσα Έκδοση 3.0
Τελευταία Ενημέρωση 2023-12-05
Ημερομηνία Δημοσίευσης 2020-03-17
Αξιολόγηση 4.64/5 Συνολικά 14 Αξιολογήσεις
Προγραμματιστής https://stapps.io
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/stilliard/Twitter-detector
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/stilliard/Twitter-detector
URL της Σελίδας Πολιτικής Απορρήτου https://twitter.com/en/privacy
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Twitter account detector",
    "description": "This extension offers a quick way to show all twitter accounts from the page its on.",
    "version": "3.0",
    "action": {
        "browser_style": true,
        "default_icon": {
            "16": "images\/icon-16x16.png",
            "48": "images\/icon-48x48.png",
            "128": "images\/icon-128x128.png"
        },
        "default_popup": "popup\/popup.html"
    },
    "permissions": [
        "activeTab"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ]
}