Quotemark

Save quotes from all over the web!

O que é Quotemark?

Quotemark é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "Save quotes from all over the web!".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Quotemark

Baixe arquivos de extensão Quotemark 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

                        Quotemark lets you save quotes from the internet and bookmark them. A list of quotes is saved in the extension's popup. Clicking on the quote, brings you back to the original web-page, where the quote is highlighted and in focus.                    

Informações Básicas da Extensão

Nome Quotemark Quotemark
ID klgfbfafpkfkchoeemoeicggojkdgecl
URL Oficial https://chromewebstore.google.com/detail/quotemark/klgfbfafpkfkchoeemoeicggojkdgecl
Descrição Save quotes from all over the web!
Tamanho do Arquivo 20.62 KB
Contagem de Instalações 18
Versão Atual 1.0
Última Atualização 2019-11-21
Data de Publicação 2019-11-16
Desenvolvedor Unknown
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Quotemark",
    "version": "1.0",
    "description": "Save quotes from all over the web!",
    "permissions": [
        "tabs",
        "contextMenus",
        "",
        "declarativeContent",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js",
            "contextmenu.js"
        ]
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": ".\/icons\/iconcontrast.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "icons": {
        "16": ".\/icons\/iconcontrast.png",
        "48": ".\/icons\/iconcontrast.png",
        "128": ".\/icons\/iconcontrast.png"
    },
    "manifest_version": 2
}