NoteBook Buddy

Provides a helping hand when using Jupyter NoteBooks

O que é NoteBook Buddy?

NoteBook Buddy é uma extensão do Chrome desenvolvida por iArunava, e sua principal característica é "Provides a helping hand when using Jupyter NoteBooks".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão NoteBook Buddy

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

                        NoteBook Buddy is an extension that provides a helping hand while you are using Jupyter NoteBooks.

As of version 0.3 you can
1) Open Github Hosted NoteBook in nbviewer and Colab
2) Open Colab Hosted NoteBook in nbviewer and Github
3) Open nbviewer Hosted NoteBook in Colab and Github

All in ONE CLICK!                    

Informações Básicas da Extensão

Nome NoteBook Buddy NoteBook Buddy
ID kmhoiofjdpbiodaggadcibdkicfgplcl
URL Oficial https://chrome.google.com/webstore/detail/notebook-buddy/kmhoiofjdpbiodaggadcibdkicfgplcl
Descrição Provides a helping hand when using Jupyter NoteBooks
Tamanho do Arquivo 164 KB
Contagem de Instalações 937
Versão Atual 0.3
Última Atualização 2018-11-15
Data de Publicação 2018-11-15
Classificação 4.67/5 Total de 3 Avaliações
Desenvolvedor iArunava
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "NoteBook Buddy",
    "version": "0.3",
    "description": "Provides a helping hand when using Jupyter NoteBooks",
    "homepage_url": "https:\/\/github.com\/iArunava\/NoteBook-Buddy\/",
    "icons": {
        "32": "icons\/nbuddy-24.png"
    },
    "permissions": [
        "notifications",
        "alarms",
        "storage",
        "unlimitedStorage",
        "activeTab",
        "tabs"
    ],
    "web_accessible_resources": [
        "icons\/nbuddy-24.png"
    ],
    "browser_action": {
        "default_icon": ".\/icons\/nbuddy-24.png",
        "default_title": "NoteBook Buddy",
        "default_popup": ".\/popup\/nbuddy_popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.github.com\/*"
            ],
            "js": [
                ".\/dependencies\/jquery.js",
                ".\/content_scripts\/nbuddy.js"
            ]
        }
    ]
}