Twitter - Add Instant Reply
This extension adds an instant reply button, which you can set after clicking the extension's icon.
¿Qué es Twitter - Add Instant Reply?
Twitter - Add Instant Reply es una extensión de Chrome desarrollada por bongosart, y su función principal es "This extension adds an instant reply button, which you can set after clicking the extension's icon.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Twitter - Add Instant Reply
Descarga archivos de extensión Twitter - Add Instant Reply en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
This extension makes it a bit easier to reply to tweets with a default reply. Go to twitter.com and and click the icon. Add the text you want to use as a default reply and click save. Open the tweet you want to answer to. You will see that a button is added to do an instant reply. Click the button and your default reply will be added to the reply section.
Información Básica de la Extensión
Nombre | Twitter - Add Instant Reply |
ID | fokpchplhnamghfkfekgefcjfinmlglg |
URL Oficial | https://chromewebstore.google.com/detail/twitter-add-instant-reply/fokpchplhnamghfkfekgefcjfinmlglg |
Descripción | This extension adds an instant reply button, which you can set after clicking the extension's icon. |
Tamaño del Archivo | 38.56 KB |
Cantidad de Instalaciones | 25 |
Versión Actual | 1.0 |
Última Actualización | 2018-06-20 |
Fecha de Publicación | 2018-06-20 |
Desarrollador | bongosart |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitter - Add Instant Reply", "description": "This extension adds an instant reply button, which you can set after clicking the extension's icon.", "version": "1.0", "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": "icon.png", "default_title": "Click to edit your reply message", "default_popup": "popup.html" }, "permissions": [ "activeTab", "https:\/\/ajax.googleapis.com\/", "storage", "tabs" ], "content_scripts": [ { "js": [ "jquery.min.js", "contentScript.js", "addReplyButtonToScreen.js" ], "matches": [ "https:\/\/twitter.com\/*" ], "run_at": "document_end" } ] } |