Tweet This Page
Browser Extension that tweets the current page URL and title.
O que é Tweet This Page?
Tweet This Page é uma extensão do Chrome desenvolvida por shuymn, e sua principal característica é "Browser Extension that tweets the current page URL and title.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Tweet This Page
Baixe arquivos de extensão Tweet This Page 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
The browser extension that allows to tweet the current page URL and title. Feature ・Add "Tweet This Page" context menus.
Informações Básicas da Extensão
Nome | Tweet This Page |
ID | ebddcjemiggiaedelggijfknajbchfah |
URL Oficial | https://chromewebstore.google.com/detail/tweet-this-page/ebddcjemiggiaedelggijfknajbchfah |
Descrição | Browser Extension that tweets the current page URL and title. |
Tamanho do Arquivo | 33.58 KB |
Contagem de Instalações | 393 |
Versão Atual | 1.1.1 |
Última Atualização | 2022-04-08 |
Data de Publicação | 2020-06-01 |
Classificação | 4.50/5 Total de 2 Avaliações |
Desenvolvedor | shuymn |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/shuymn/tweet-this-page |
URL da Página de Ajuda | https://github.com/shuymn/tweet-this-page/issues |
Idiomas Suportados | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extName__", "description": "__MSG_extDescription__", "version": "1.1.1", "default_locale": "en", "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png", "256": "images\/icon-256.png" }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/intent\/tweet?url=*" ], "js": [ "scripts\/content.js" ] } ], "background": { "scripts": [ "scripts\/background.js" ], "persistent": false }, "browser_action": { "default_popup": "popup.html" }, "permissions": [ "contextMenus", "webNavigation", "https:\/\/twitter.com\/intent\/tweet?url=*" ] } |