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文件

下載Twitter Reaction Counter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}