Twitter Cards expander
Automatically expand all Twitter Cards. Because they are beautiful and you love them.
Cos'è Twitter Cards expander?
Twitter Cards expander è un'estensione di Chrome sviluppata da jdesjardinsbernier, e la sua funzione principale è "Automatically expand all Twitter Cards. Because they are beautiful and you love them.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Twitter Cards expander
Scarica i file di estensione Twitter Cards expander in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | ![]() |
ID | ndppfobgkneohcoegnmlgdcfdgefmpgm |
URL Ufficiale | https://chrome.google.com/webstore/detail/twitter-cards-expander/ndppfobgkneohcoegnmlgdcfdgefmpgm |
Descrizione | Automatically expand all Twitter Cards. Because they are beautiful and you love them. |
Dimensione del File | 141 KB |
Conteggio Installazioni | 24 |
Versione Corrente | 0.0.2 |
Ultimo Aggiornamento | 2014-11-27 |
Data di Pubblicazione | 2014-11-27 |
Sviluppatore | jdesjardinsbernier |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://github.com/jackdbernier/twitter-card-expander |
URL della Pagina di Aiuto | http://github.com/jackdbernier/twitter-card-expander/issues |
Lingue Supportate | 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" ] } ] } |