Save as Gist

Save notes and webpage information as private gists.

O que é Save as Gist?

Save as Gist é uma extensão do Chrome desenvolvida por nick.vanexan, e sua principal característica é "Save notes and webpage information as private gists.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Save as Gist

Baixe arquivos de extensão Save as Gist 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

                        This allows you to save a note to your private gists on GitHub. If you are on a webpage and highlight certain text, it will pre-populate your note with that text.                    

Informações Básicas da Extensão

Nome Save as Gist Save as Gist
ID bkdmkcpliolodfhpndnocfpglldmeeop
URL Oficial https://chromewebstore.google.com/detail/save-as-gist/bkdmkcpliolodfhpndnocfpglldmeeop
Descrição Save notes and webpage information as private gists.
Tamanho do Arquivo 14.54 KB
Contagem de Instalações 79
Versão Atual 0.0.4
Última Atualização 2018-04-18
Data de Publicação 2018-04-17
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor nick.vanexan
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Save as Gist",
    "version": "0.0.4",
    "description": "Save notes and webpage information as private gists.",
    "permissions": [
        "storage",
        "identity",
        "activeTab",
        "https:\/\/api.github.com\/*",
        "https:\/\/github.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "manifest_version": 2,
    "browser_action": {
        "default_title": "Create new gist",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}