squish

Make tall tweets short.

Qu'est-ce que squish ?

squish est une extension Chrome développée par APB Software, et sa fonction principale est "Make tall tweets short.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension squish

Téléchargez les fichiers d'extension squish 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

                        Tall tweets can be a pain in the ass to scroll past. 

Not any more! Squish will automatically hide tall tweets, and let you view them if you really want to.                    

Informations de Base sur l'Extension

Nom squish squish
ID bibdnpefpfgdgbficnmcffagemhbpldf
URL Officiel https://chromewebstore.google.com/detail/squish/bibdnpefpfgdgbficnmcffagemhbpldf
Description Make tall tweets short.
Taille du Fichier 242 KB
Nombre d'Installations 41
Version Actuelle 1.0
Dernière Mise à Jour 2017-09-28
Date de Publication 2017-09-28
Évaluation 5.00/5 Total 1 Évaluations
Développeur APB Software
Email [email protected]
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "squish",
    "description": "Make tall tweets short.",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Make tall tweets short."
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.twitter.com\/*",
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "jquery.js",
                "contentScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "http:\/\/twitter.com\/",
        "https:\/\/twitter.com\/",
        "tabs",
        "activeTab",
        "storage"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}