squish
Make tall tweets short.
Wat is squish?
squish is een Chrome-extensie ontwikkeld door APB Software, en de belangrijkste functie is "Make tall tweets short.".
Extensie Screenshots
Download het CRX-bestand van de extensie squish
Download squish-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | bibdnpefpfgdgbficnmcffagemhbpldf |
Officiële URL | https://chromewebstore.google.com/detail/squish/bibdnpefpfgdgbficnmcffagemhbpldf |
Beschrijving | Make tall tweets short. |
Bestandsgrootte | 242 KB |
Aantal Installaties | 41 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2017-09-28 |
Publicatiedatum | 2017-09-28 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | APB Software |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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'" } |