Twitter Cards expander

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

Was ist Twitter Cards expander?

Twitter Cards expander ist eine Chrome-Erweiterung, die von jdesjardinsbernier entwickelt wurde, und ihr Hauptmerkmal ist "Automatically expand all Twitter Cards. Because they are beautiful and you love them.".

Erweiterungsscreenshots

screenshot

Twitter Cards expander-Erweiterungs-CRX-Datei herunterladen

Laden Sie Twitter Cards expander-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Twitter Cards expander Twitter Cards expander
ID ndppfobgkneohcoegnmlgdcfdgefmpgm
Offizielle URL https://chrome.google.com/webstore/detail/twitter-cards-expander/ndppfobgkneohcoegnmlgdcfdgefmpgm
Beschreibung Automatically expand all Twitter Cards. Because they are beautiful and you love them.
Dateigröße 141 KB
Installationsanzahl 24
Aktuelle Version 0.0.2
Letztes Update 2014-11-27
Veröffentlichungsdatum 2014-11-27
Entwickler jdesjardinsbernier
Zahlungsart free
Erweiterungswebsite http://github.com/jackdbernier/twitter-card-expander
Hilfeseite URL http://github.com/jackdbernier/twitter-card-expander/issues
Unterstützte Sprachen 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"
            ]
        }
    ]
}