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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 URL | 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 } |