Jupyter code toggler
Show or hide jupyter notebook code when pressing on the extension icon.
Jupyter code toggler là gì?
Jupyter code toggler là một tiện ích mở rộng Chrome được phát triển bởi Andrea Dragotta, và tính năng chính của nó là "Show or hide jupyter notebook code when pressing on the extension icon.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Jupyter code toggler
Tải xuống các tệp mở rộng Jupyter code toggler dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Jupyter code toggler |
ID | hnhgmpnjedddjajhicphnfojgablhnbe |
URL Chính Thức | https://chromewebstore.google.com/detail/jupyter-code-toggler/hnhgmpnjedddjajhicphnfojgablhnbe |
Mô tả | Show or hide jupyter notebook code when pressing on the extension icon. |
Kích Thước Tệp | 48.58 KB |
Số Lần Cài Đặt | 94 |
Phiên Bản Hiện Tại | 1.0.5 |
Cập Nhật Lần Cuối | 2022-11-09 |
Ngày Phát Hành | 2021-04-11 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Andrea Dragotta |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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 } |