squish

Make tall tweets short.

What is squish?

squish is a Chrome extension developed by APB Software, and its main feature is "Make tall tweets short.".

Extension Screenshots

screenshot

Download squish Extension CRX File

Download squish extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name squish squish
ID bibdnpefpfgdgbficnmcffagemhbpldf
Official URL https://chromewebstore.google.com/detail/squish/bibdnpefpfgdgbficnmcffagemhbpldf
Description Make tall tweets short.
File Size 242 KB
Installation Count 41
Current Version 1.0
Last Updated 2017-09-28
Publish Date 2017-09-28
Rating 5.00/5 Total 1 Ratings
Developer APB Software
Email [email protected]
Payment Type free
Supported Languages 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'"
}