Quick Quotes

Select and save quotes from the internet as well as a link to them.

¿Qué es Quick Quotes?

Quick Quotes es una extensión de Chrome desarrollada por Unknown, y su función principal es "Select and save quotes from the internet as well as a link to them.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Quick Quotes

Descarga archivos de extensión Quick Quotes 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

                        Save and link to quotes on the internet you want to keep.

Just select text on any webpage and right-click it and choose "Save as Quick Quote". Click on the Quick Quotes extension button next to the Chrome browser bar to see all your saved quotes and go to their original locations on the internet.                    

Información Básica de la Extensión

Nombre Quick Quotes Quick Quotes
ID ffbpeppefgiiadaogddjejkgfhlpnbni
URL Oficial https://chromewebstore.google.com/detail/quick-quotes/ffbpeppefgiiadaogddjejkgfhlpnbni
Descripción Select and save quotes from the internet as well as a link to them.
Tamaño del Archivo 7.31 KB
Cantidad de Instalaciones 137
Versión Actual 1.0
Última Actualización 2015-12-12
Fecha de Publicación 2015-12-11
Calificación 5.00/5 Total de 2 Calificaciones
Desarrollador Unknown
Tipo de Pago free
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Quick Quotes",
    "description": "Select and save quotes from the internet as well as a link to them.",
    "version": "1.0",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon16.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "findQuote.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab",
        "storage",
        "contextMenus",
        "tabs",
        ""
    ]
}