CADLAB.io
Integrate your GitHub account with CADLAB.io and easily view or compare Altium, Eagle and KiCad PCB design revisions in a browser.
CADLAB.io란 무엇입니까?
CADLAB.io은(는) https://cadlab.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Integrate your GitHub account with CADLAB.io and easily view or compare Altium, Eagle and KiCad PCB design revisions in a browser."입니다.
확장 프로그램 스크린샷
CADLAB.io 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
CADLAB.io is a cloud-based hardware development platform which provides engineers with an enhanced version control system and collaboration tools for hardware design. Based on Git, one of most popular version control systems for software, it allows you to keep native PCB design files in a repository and view, compare and comment on any part of a PCB in a browser. CADLAB.io can be easily integrated with GitHub and this extension adds a button to each schematic or board layout file in your GitHub repository, so that you can view or compare circuit revisions right from the GitHub project page.
확장 프로그램 기본 정보
이름 | CADLAB.io |
ID | nlafhefelnfmdpkkhhcckfhnphjcgepm |
공식 URL | https://chromewebstore.google.com/detail/cadlabio/nlafhefelnfmdpkkhhcckfhnphjcgepm |
설명 | Integrate your GitHub account with CADLAB.io and easily view or compare Altium, Eagle and KiCad PCB design revisions in a browser. |
파일 크기 | 53.01 KB |
설치 횟수 | 822 |
현재 버전 | 1.6.8 |
최근 업데이트 | 2021-06-17 |
출시 날짜 | 2020-06-17 |
평점 | 5.00/5 총 4 개의 평점 |
개발자 | https://cadlab.io |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://cadlab.io |
개인정보 보호 정책 페이지 URL | https://cadlab.io/privacy-policy |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "CADLAB.io", "description": "Integrate your GitHub account with CADLAB.io and easily view or compare Altium, Eagle and KiCad PCB design revisions in a browser.", "version": "1.6.8", "web_accessible_resources": [ "img\/cadlab-icon-color.svg" ], "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "lib\/jquery-3.2.1.min.js", "js\/content_script.js" ], "css": [ "styles\/css\/styles.css" ], "run_at": "document_idle" } ], "icons": { "16": "img\/cadlab-icon-16x16.png", "48": "img\/cadlab-icon-48x48.png", "128": "img\/cadlab-icon-128x128.png" }, "browser_action": { "default_icon": "img\/inactive-icon.png" }, "background": { "scripts": [ "lib\/jquery-3.2.1.min.js", "js\/background.js" ] }, "permissions": [ "https:\/\/github.com\/", "https:\/\/cadlab.io\/" ] } |