Twitter & FB Capture
Capture screenshots of Twitter and Facebook posts.
O que é Twitter & FB Capture?
Twitter & FB Capture é uma extensão do Chrome desenvolvida por Shang Liang, e sua principal característica é "Capture screenshots of Twitter and Facebook posts.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Twitter & FB Capture
Baixe arquivos de extensão Twitter & FB Capture 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
Screen grab a post on Twitter and Facebook. After installation, go and visit a Twitter page e.g. https://twitter.com/googlecloud/status/1285547816564269057 Right click at the center post and the a button will appear in the context menu "Capture" Click at it capture the image and you can paste it onto your keynote or powerpoint slides
Informações Básicas da Extensão
Nome | Twitter & FB Capture |
ID | jnajainpealobgghniooofdcahcflnag |
URL Oficial | https://chromewebstore.google.com/detail/twitter-fb-capture/jnajainpealobgghniooofdcahcflnag |
Descrição | Capture screenshots of Twitter and Facebook posts. |
Tamanho do Arquivo | 42.8 KB |
Contagem de Instalações | 189 |
Versão Atual | 0.0.3 |
Última Atualização | 2020-07-24 |
Data de Publicação | 2020-07-24 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Shang Liang |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitter & FB Capture", "version": "0.0.3", "manifest_version": 2, "description": "Capture screenshots of Twitter and Facebook posts.", "icons": { "16": "icons\/icon16.png", "19": "icons\/icon19.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "browser_action": { "default_icon": "icons\/icon128.png" }, "permissions": [ "https:\/\/www.facebook.com\/*", "https:\/\/twitter.com\/*", "activeTab", "contextMenus" ], "content_scripts": [ { "matches": [ "https:\/\/www.facebook.com\/*", "https:\/\/twitter.com\/*" ], "js": [ "content.js" ] } ], "background": { "scripts": [ "background.js" ] }, "web_accessible_resources": [ "injection.css" ] } |