squish

Make tall tweets short.

Cos'è squish?

squish è un'estensione di Chrome sviluppata da APB Software, e la sua funzione principale è "Make tall tweets short.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione squish

Scarica i file di estensione squish in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome squish squish
ID bibdnpefpfgdgbficnmcffagemhbpldf
URL Ufficiale https://chromewebstore.google.com/detail/squish/bibdnpefpfgdgbficnmcffagemhbpldf
Descrizione Make tall tweets short.
Dimensione del File 242 KB
Conteggio Installazioni 41
Versione Corrente 1.0
Ultimo Aggiornamento 2017-09-28
Data di Pubblicazione 2017-09-28
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore APB Software
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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'"
}