Twitter Cards expander

Automatically expand all Twitter Cards. Because they are beautiful and you love them.

Twitter Cards expanderとは何ですか?

Twitter Cards expanderはjdesjardinsbernierによって開発されたChromeの拡張機能で、その主な機能は「Automatically expand all Twitter Cards. Because they are beautiful and you love them.」です。

拡張機能のスクリーンショット

screenshot

Twitter Cards expander拡張機能のCRXファイルをダウンロード

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.                    

拡張機能の基本情報

名前 Twitter Cards expander Twitter Cards expander
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"
            ]
        }
    ]
}