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은(는) https://stapps.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension offers a quick way to show all twitter accounts from the page its on."입니다.

확장 프로그램 스크린샷

screenshot

Twitter account detector 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}