Twitter Reaction Counter

This extension get list of Like/Retweet on a tweet

Twitter Reaction Counter란 무엇입니까?

Twitter Reaction Counter은(는) Kosk에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension get list of Like/Retweet on a tweet"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Twitter Reaction Counter 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        You can display the user list of Like/Retweet on a tweet into table format.

Click Likes, or Retweets on a tweet, then click "Getting Like/Retweet" button on its popup, you can get the list.
You can see what number of the user list you got, on its icon.

This extension get the list only you display on your browser. so if you wanna get more Like/Retweet list, scroll down the list of Like/Retweet on the tweet page.

Finally, click "View Results" button on its popup, then another tab will be opened.
You can see the user list, and Name, DisplayName, Follow you and Bio of the user.

Please use this for Giveaway or so.

Full manual:
https://note.com/kosk_t/n/n2d43c166e29b                    

확장 프로그램 기본 정보

이름 Twitter Reaction Counter Twitter Reaction Counter
ID mgkgjmacmbfehebmefhbbagdcagooccd
공식 URL https://chromewebstore.google.com/detail/twitter-reaction-counter/mgkgjmacmbfehebmefhbbagdcagooccd
설명 This extension get list of Like/Retweet on a tweet
파일 크기 132 KB
설치 횟수 34
현재 버전 1.1
최근 업데이트 2023-06-25
출시 날짜 2023-05-02
개발자 Kosk
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://note.com/kosk_t/n/n2d43c166e29b
도움말 페이지 URL https://twitter.com/kosk_t
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter Reaction Counter",
    "description": "This extension get list of Like\/Retweet on a tweet",
    "version": "1.1",
    "manifest_version": 3,
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "js\/content_script.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/number_128.png",
            "32": "\/images\/number_128.png",
            "48": "\/images\/number_128.png",
            "128": "\/images\/number_128.png"
        }
    },
    "icons": {
        "16": "\/images\/number_128.png",
        "32": "\/images\/number_128.png",
        "48": "\/images\/number_128.png",
        "128": "\/images\/number_128.png"
    }
}