QuickTweet
A Twitter ToolKit by Will
¿Qué es QuickTweet?
QuickTweet es una extensión de Chrome desarrollada por cobwebsteruk, y su función principal es "A Twitter ToolKit by Will".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión QuickTweet
Descarga archivos de extensión QuickTweet 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
A Quick Tweeting tool which allows you to tweet selections, pages, images and URLS without the need of typing or going to twitter. Right click anywhere on a page to tweet the page URL Right click selected text to tweet the text Right click a image to tweet the image Right click a link to tweet the link
Información Básica de la Extensión
Nombre | QuickTweet |
ID | glongeojkcbhnkhjjlbijdcfgmndigjp |
URL Oficial | https://chromewebstore.google.com/detail/quicktweet/glongeojkcbhnkhjjlbijdcfgmndigjp |
Descripción | A Twitter ToolKit by Will |
Tamaño del Archivo | 15.44 KB |
Cantidad de Instalaciones | 140 |
Versión Actual | 1.1 |
Última Actualización | 2017-07-10 |
Fecha de Publicación | 2017-07-10 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | cobwebsteruk |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "QuickTweet", "description": "A Twitter ToolKit by Will", "version": "1.1", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ] }, "icons": { "64": "bigicon.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "myscript.js" ] } ], "permissions": [ "activeTab", "https:\/\/ajax.googleapis.com\/", "contextMenus" ] } |