Add to Shaarli

This extension lets you add the current tab or a note to your Shaarli instance.

O que é Add to Shaarli?

Add to Shaarli é uma extensão do Chrome desenvolvida por Lucas Bürgy, e sua principal característica é "This extension lets you add the current tab or a note to your Shaarli instance.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Add to Shaarli

Baixe arquivos de extensão Add to Shaarli 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

                        You have to setup your Shaarli instance in the options first.

- On click : Add current tab
- Alt+S : Add current tab
- Alt+N : Add a note

This extension is open source and available here: https://github.com/burgyl/AddToShaarli                    

Informações Básicas da Extensão

Nome Add to Shaarli Add to Shaarli
ID jhfblapoehcfajokolimghdfmeeakbee
URL Oficial https://chromewebstore.google.com/detail/add-to-shaarli/jhfblapoehcfajokolimghdfmeeakbee
Descrição This extension lets you add the current tab or a note to your Shaarli instance.
Tamanho do Arquivo 99.53 KB
Contagem de Instalações 1,473
Versão Atual 1.1.0
Última Atualização 2021-03-20
Data de Publicação 2019-03-24
Classificação 5.00/5 Total de 4 Avaliações
Desenvolvedor Lucas Bürgy
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/burgyl/AddToShaarli
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Add to Shaarli",
    "description": "This extension lets you add the current tab or a note to your Shaarli instance.",
    "version": "1.1.0",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "commands": {
        "add-url": {
            "suggested_key": {
                "default": "Alt+S"
            },
            "description": "Add current tab"
        },
        "add-note": {
            "suggested_key": {
                "default": "Alt+N"
            },
            "description": "Add a note"
        }
    }
}