squish

Make tall tweets short.

squish là gì?

squish là một tiện ích mở rộng Chrome được phát triển bởi APB Software, và tính năng chính của nó là "Make tall tweets short.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng squish

Tải xuống các tệp mở rộng squish dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên squish squish
ID bibdnpefpfgdgbficnmcffagemhbpldf
URL Chính Thức https://chromewebstore.google.com/detail/squish/bibdnpefpfgdgbficnmcffagemhbpldf
Mô tả Make tall tweets short.
Kích Thước Tệp 242 KB
Số Lần Cài Đặt 41
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2017-09-28
Ngày Phát Hành 2017-09-28
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển APB Software
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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'"
}