Jupyter code toggler
Show or hide jupyter notebook code when pressing on the extension icon.
O que é Jupyter code toggler?
Jupyter code toggler é uma extensão do Chrome desenvolvida por Andrea Dragotta, e sua principal característica é "Show or hide jupyter notebook code when pressing on the extension icon.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Jupyter code toggler
Baixe arquivos de extensão Jupyter code toggler 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
Very simple extension that hides or shows all the python code inside a jupyter notebook tab when the extension icon (in the extension bar) is clicked. • v.1.0.5 - Fixed another padding issue in the "print preview" page (this time for the text). • v.1.0.4 - Fixed image padding issues in the "print preview" page. • v.1.0.3 - Fixed permission bug that didn't allow to use the extension in the "print preview" page. • v.1.0.2 - Fixed code cell with no output not being fully hidden (still selectable). • v.1.0.1 - Updated in order to work also when in "print preview" mode.
Informações Básicas da Extensão
Nome | Jupyter code toggler |
ID | hnhgmpnjedddjajhicphnfojgablhnbe |
URL Oficial | https://chromewebstore.google.com/detail/jupyter-code-toggler/hnhgmpnjedddjajhicphnfojgablhnbe |
Descrição | Show or hide jupyter notebook code when pressing on the extension icon. |
Tamanho do Arquivo | 48.58 KB |
Contagem de Instalações | 94 |
Versão Atual | 1.0.5 |
Última Atualização | 2022-11-09 |
Data de Publicação | 2021-04-11 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Andrea Dragotta |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Jupyter code toggler", "version": "1.0.5", "description": "Show or hide jupyter notebook code when pressing on the extension icon.", "permissions": [ "activeTab", "scripting" ], "host_permissions": [ "http:\/\/localhost\/*" ], "background": { "service_worker": "background.js" }, "action": { "default_icon": { "16": "icons\/hide16.png", "32": "icons\/hide32.png", "48": "icons\/hide48.png" }, "default_title": "Hide jupyter code" }, "icons": { "16": "icons\/logo16.png", "32": "icons\/logo32.png", "48": "icons\/logo48.png" }, "manifest_version": 3 } |