Twitter Reaction Counter
This extension get list of Like/Retweet on a tweet
Twitter Reaction Counter là gì?
Twitter Reaction Counter là một tiện ích mở rộng Chrome được phát triển bởi Kosk, và tính năng chính của nó là "This extension get list of Like/Retweet on a tweet".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Twitter Reaction Counter
Tải xuống các tệp mở rộng Twitter Reaction Counter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Twitter Reaction Counter |
ID | mgkgjmacmbfehebmefhbbagdcagooccd |
URL Chính Thức | https://chromewebstore.google.com/detail/twitter-reaction-counter/mgkgjmacmbfehebmefhbbagdcagooccd |
Mô tả | This extension get list of Like/Retweet on a tweet |
Kích Thước Tệp | 132 KB |
Số Lần Cài Đặt | 34 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2023-06-25 |
Ngày Phát Hành | 2023-05-02 |
Nhà Phát Triển | Kosk |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://note.com/kosk_t/n/n2d43c166e29b |
URL Trang Trợ Giúp | https://twitter.com/kosk_t |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |