Twitter Cards expander
Automatically expand all Twitter Cards. Because they are beautiful and you love them.
¿Qué es Twitter Cards expander?
Twitter Cards expander es una extensión de Chrome desarrollada por jdesjardinsbernier, y su función principal es "Automatically expand all Twitter Cards. Because they are beautiful and you love them.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Twitter Cards expander
Descarga archivos de extensión Twitter Cards expander 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
Enhance the use of Twitter Cards by expanding them automatically. You know the big bad-ass summaries you can expand by clicking "view summary" ? Well you won't have to click on it anymore.
Información Básica de la Extensión
Nombre | ![]() |
ID | ndppfobgkneohcoegnmlgdcfdgefmpgm |
URL Oficial | https://chrome.google.com/webstore/detail/twitter-cards-expander/ndppfobgkneohcoegnmlgdcfdgefmpgm |
Descripción | Automatically expand all Twitter Cards. Because they are beautiful and you love them. |
Tamaño del Archivo | 141 KB |
Cantidad de Instalaciones | 24 |
Versión Actual | 0.0.2 |
Última Actualización | 2014-11-27 |
Fecha de Publicación | 2014-11-27 |
Desarrollador | jdesjardinsbernier |
Tipo de Pago | free |
Sitio Web de la Extensión | http://github.com/jackdbernier/twitter-card-expander |
URL de la Página de Ayuda | http://github.com/jackdbernier/twitter-card-expander/issues |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitter Cards expander", "version": "0.0.2", "manifest_version": 2, "description": "Automatically expand all Twitter Cards. Because they are beautiful and you love them.", "homepage_url": "http:\/\/extensionizr.com", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "background": { "scripts": [ "src\/bg\/background.js" ], "persistent": true }, "options_page": "src\/options\/index.html", "page_action": { "default_icon": "icons\/icon19.png", "default_title": "page action demo", "default_popup": "src\/page_action\/page_action.html" }, "permissions": [ "https:\/\/www.twitter.com\/*", "https:\/\/twitter.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/www.twitter.com\/*", "https:\/\/twitter.com\/*" ], "js": [ "js\/jquery\/jquery.min.js", "src\/inject\/inject.js" ] } ] } |