ReviewDB Twitter
Allows you to review other Twitter users
O que é ReviewDB Twitter?
ReviewDB Twitter é uma extensão do Chrome desenvolvida por mantikafasi, e sua principal característica é "Allows you to review other Twitter users".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão ReviewDB Twitter
Baixe arquivos de extensão ReviewDB Twitter 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
A extension which allows you to review other users. Anyone who has the extension will be able to see what you commented. Emoji artwork is based on flattened version of brain tweemoji (licensed under Creative Commons Attribution 4.0 International License. https://github.com/twitter/twemoji/blob/master/LICENSE-GRAPHICS)
Informações Básicas da Extensão
Nome | ReviewDB Twitter |
ID | kmgbgncbggoffjbefmnknffpofcajohj |
URL Oficial | https://chromewebstore.google.com/detail/reviewdb-twitter/kmgbgncbggoffjbefmnknffpofcajohj |
Descrição | Allows you to review other Twitter users |
Tamanho do Arquivo | 56.42 KB |
Contagem de Instalações | 88 |
Versão Atual | 0.1.1 |
Última Atualização | 2023-06-06 |
Data de Publicação | 2023-06-06 |
Classificação | 3.40/5 Total de 5 Avaliações |
Desenvolvedor | mantikafasi |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://reviewdb.mantikafasi.dev |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ReviewDB Twitter", "version": "0.1.1", "description": "Allows you to review other Twitter users", "icons": { "16": "icons\/icon_16.png", "32": "icons\/icon_32.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "web_accessible_resources": [ { "resources": [ "bundle.js", "bundle.css" ], "matches": [ "https:\/\/twitter.com\/*" ] }, { "resources": [ "authpage.html" ], "matches": [ "https:\/\/manti.vendicated.dev\/*" ] } ], "action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*" ], "run_at": "document_start", "js": [ "content.js" ] }, { "matches": [ "https:\/\/manti.vendicated.dev\/api\/reviewdb-twitter\/auth*" ], "js": [ "auth.js" ] } ], "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "externally_connectable": { "matches": [ "https:\/\/manti.vendicated.dev\/api\/reviewdb-twitter\/auth", "https:\/\/twitter.com\/*" ] } } |