Twitter Cards expander
Automatically expand all Twitter Cards. Because they are beautiful and you love them.
Что такое Twitter Cards expander?
Twitter Cards expander - это расширение Chrome, разработанное jdesjardinsbernier, и его основная функция - "Automatically expand all Twitter Cards. Because they are beautiful and you love them.".
Снимки экрана расширения
Скачать файл CRX расширения Twitter Cards expander
Скачайте файлы расширений Twitter Cards expander в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | ![]() |
ID | ndppfobgkneohcoegnmlgdcfdgefmpgm |
Официальный URL | https://chrome.google.com/webstore/detail/twitter-cards-expander/ndppfobgkneohcoegnmlgdcfdgefmpgm |
Описание | Automatically expand all Twitter Cards. Because they are beautiful and you love them. |
Размер файла | 141 KB |
Количество установок | 24 |
Текущая Версия | 0.0.2 |
Последнее Обновление | 2014-11-27 |
Дата публикации | 2014-11-27 |
Разработчик | jdesjardinsbernier |
Тип оплаты | free |
Официальный сайт расширения | http://github.com/jackdbernier/twitter-card-expander |
URL страницы помощи | http://github.com/jackdbernier/twitter-card-expander/issues |
Поддерживаемые языки | 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" ] } ] } |