Quick Quotes

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

O que é Quick Quotes?

Quick Quotes é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "Select and save quotes from the internet as well as a link to them.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Quick Quotes

Baixe arquivos de extensão Quick Quotes no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Quick Quotes Quick Quotes
ID ffbpeppefgiiadaogddjejkgfhlpnbni
URL Oficial https://chromewebstore.google.com/detail/quick-quotes/ffbpeppefgiiadaogddjejkgfhlpnbni
Descrição Select and save quotes from the internet as well as a link to them.
Tamanho do Arquivo 7.31 KB
Contagem de Instalações 137
Versão Atual 1.0
Última Atualização 2015-12-12
Data de Publicação 2015-12-11
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor Unknown
Tipo de Pagamento free
Idiomas Suportados 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",
        ""
    ]
}