Twitter Cards expander
Automatically expand all Twitter Cards. Because they are beautiful and you love them.
Vad är Twitter Cards expander?
Twitter Cards expander är en Chrome-tillägg utvecklad av jdesjardinsbernier, och dess huvudfunktion är "Automatically expand all Twitter Cards. Because they are beautiful and you love them.".
Tilläggsskärmbilder
Ladda ner Twitter Cards expander-förlängningens CRX-fil
Ladda ner Twitter Cards expander-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | ![]() |
ID | ndppfobgkneohcoegnmlgdcfdgefmpgm |
Officiell webbadress | https://chrome.google.com/webstore/detail/twitter-cards-expander/ndppfobgkneohcoegnmlgdcfdgefmpgm |
Beskrivning | Automatically expand all Twitter Cards. Because they are beautiful and you love them. |
Filstorlek | 141 KB |
Antal Installationer | 24 |
Aktuell Version | 0.0.2 |
Senast Uppdaterad | 2014-11-27 |
Publiceringsdatum | 2014-11-27 |
Utvecklare | jdesjardinsbernier |
Betalningssätt | free |
Tilläggswebbplats | http://github.com/jackdbernier/twitter-card-expander |
Hjälpsida URL | http://github.com/jackdbernier/twitter-card-expander/issues |
Stödda Språk | 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" ] } ] } |