Twitter Reaction Counter
This extension get list of Like/Retweet on a tweet
O que é Twitter Reaction Counter?
Twitter Reaction Counter é uma extensão do Chrome desenvolvida por Kosk, e sua principal característica é "This extension get list of Like/Retweet on a tweet".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Twitter Reaction Counter
Baixe arquivos de extensão Twitter Reaction Counter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Twitter Reaction Counter |
ID | mgkgjmacmbfehebmefhbbagdcagooccd |
URL Oficial | https://chromewebstore.google.com/detail/twitter-reaction-counter/mgkgjmacmbfehebmefhbbagdcagooccd |
Descrição | This extension get list of Like/Retweet on a tweet |
Tamanho do Arquivo | 132 KB |
Contagem de Instalações | 34 |
Versão Atual | 1.1 |
Última Atualização | 2023-06-25 |
Data de Publicação | 2023-05-02 |
Desenvolvedor | Kosk |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://note.com/kosk_t/n/n2d43c166e29b |
URL da Página de Ajuda | https://twitter.com/kosk_t |
Idiomas Suportados | 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" } } |