Twitter account detector

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

Vad är Twitter account detector?

Twitter account detector är en Chrome-tillägg utvecklad av https://stapps.io, och dess huvudfunktion är "This extension offers a quick way to show all twitter accounts from the page its on.".

Tilläggsskärmbilder

screenshot

Ladda ner Twitter account detector-förlängningens CRX-fil

Ladda ner Twitter account detector-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

                        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                    

Grundläggande Information om Tillägg

Namn Twitter account detector Twitter account detector
ID papcdbgfejihdinhieggiamjnkclhkck
Officiell webbadress https://chromewebstore.google.com/detail/twitter-account-detector/papcdbgfejihdinhieggiamjnkclhkck
Beskrivning This extension offers a quick way to show all twitter accounts from the page its on.
Filstorlek 988 KB
Antal Installationer 1,247
Aktuell Version 3.0
Senast Uppdaterad 2023-12-05
Publiceringsdatum 2020-03-17
Betyg 4.64/5 Totalt 14 Betyg
Utvecklare https://stapps.io
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/stilliard/Twitter-detector
Hjälpsida URL https://github.com/stilliard/Twitter-detector
URL till Sekretesspolicy Sidan https://twitter.com/en/privacy
Stödda Språk 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"
            ]
        }
    ]
}