Twitter & FB Capture
Capture screenshots of Twitter and Facebook posts.
¿Qué es Twitter & FB Capture?
Twitter & FB Capture es una extensión de Chrome desarrollada por Shang Liang, y su función principal es "Capture screenshots of Twitter and Facebook posts.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Twitter & FB Capture
Descarga archivos de extensión Twitter & FB Capture en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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 Información Básica de la Extensión
| Nombre | |
| ID | jnajainpealobgghniooofdcahcflnag |
| URL Oficial | https://chromewebstore.google.com/detail/twitter-fb-capture/jnajainpealobgghniooofdcahcflnag |
| Descripción | Capture screenshots of Twitter and Facebook posts. |
| Tamaño del Archivo | 42.8 KB |
| Cantidad de Instalaciones | 189 |
| Versión Actual | 0.0.3 |
| Última Actualización | 2020-07-24 |
| Fecha de Publicación | 2020-07-24 |
| Calificación | 5.00/5 Total de 1 Calificaciones |
| Desarrollador | Shang Liang |
| Correo electrónico | [email protected] |
| Tipo de Pago | free |
| Idiomas Soportados | 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"
]
} | |