Quick Quotes

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

Cos'è Quick Quotes?

Quick Quotes è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Select and save quotes from the internet as well as a link to them.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Quick Quotes

Scarica i file di estensione Quick Quotes in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Quick Quotes Quick Quotes
ID ffbpeppefgiiadaogddjejkgfhlpnbni
URL Ufficiale https://chromewebstore.google.com/detail/quick-quotes/ffbpeppefgiiadaogddjejkgfhlpnbni
Descrizione Select and save quotes from the internet as well as a link to them.
Dimensione del File 7.31 KB
Conteggio Installazioni 137
Versione Corrente 1.0
Ultimo Aggiornamento 2015-12-12
Data di Pubblicazione 2015-12-11
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Unknown
Tipo di Pagamento free
Lingue Supportate 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",
        ""
    ]
}