Jupyter code toggler
Show or hide jupyter notebook code when pressing on the extension icon.
什麼是Jupyter code toggler?
Jupyter code toggler是由Andrea Dragotta開發的Chrome擴展程式,該擴展的主要功能是“Show or hide jupyter notebook code when pressing on the extension icon.”。
擴展截圖
下載Jupyter code toggler擴展crx文件
下載Jupyter code toggler擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | Jupyter code toggler |
ID | hnhgmpnjedddjajhicphnfojgablhnbe |
官方網址 | https://chromewebstore.google.com/detail/jupyter-code-toggler/hnhgmpnjedddjajhicphnfojgablhnbe |
簡介 | Show or hide jupyter notebook code when pressing on the extension icon. |
檔案大小 | 48.58 KB |
安裝次數 | 94 |
目前版本 | 1.0.5 |
更新時間 | 2022-11-09 |
上架時間 | 2021-04-11 |
評分 | 5.00/5 共 1 次評分 |
開發者 | Andrea Dragotta |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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 } |