Twitter Cards expander

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

Qu'est-ce que Twitter Cards expander ?

Twitter Cards expander est une extension Chrome développée par jdesjardinsbernier, et sa fonction principale est "Automatically expand all Twitter Cards. Because they are beautiful and you love them.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Twitter Cards expander

Téléchargez les fichiers d'extension Twitter Cards expander au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Twitter Cards expander Twitter Cards expander
ID ndppfobgkneohcoegnmlgdcfdgefmpgm
URL Officiel https://chrome.google.com/webstore/detail/twitter-cards-expander/ndppfobgkneohcoegnmlgdcfdgefmpgm
Description Automatically expand all Twitter Cards. Because they are beautiful and you love them.
Taille du Fichier 141 KB
Nombre d'Installations 24
Version Actuelle 0.0.2
Dernière Mise à Jour 2014-11-27
Date de Publication 2014-11-27
Développeur jdesjardinsbernier
Type de Paiement free
Site Web de l'Extension http://github.com/jackdbernier/twitter-card-expander
URL de la Page d'Aide http://github.com/jackdbernier/twitter-card-expander/issues
Langues Prises en Charge 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"
            ]
        }
    ]
}