squish
Make tall tweets short.
squishとは何ですか?
squishはAPB Softwareによって開発されたChromeの拡張機能で、その主な機能は「Make tall tweets short.」です。
拡張機能のスクリーンショット
squish拡張機能のCRXファイルをダウンロード
squish拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | |
ID | bibdnpefpfgdgbficnmcffagemhbpldf |
公式URL | https://chromewebstore.google.com/detail/squish/bibdnpefpfgdgbficnmcffagemhbpldf |
説明 | Make tall tweets short. |
ファイルサイズ | 242 KB |
インストール数 | 41 |
現在のバージョン | 1.0 |
最終更新日 | 2017-09-28 |
公開日 | 2017-09-28 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | APB Software |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | 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'" } |