Runme Web Extension
A Runme browser extension to bring Runme capabilities into the browser.
Runme Web Extension란 무엇입니까?
Runme Web Extension은(는) https://stateful.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Runme browser extension to bring Runme capabilities into the browser."입니다.
확장 프로그램 스크린샷
Runme Web Extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension adds Runme links to GitHub repositories that allow you to checkout any project locally with a single click. VS Code will open the markdown file that you view in the browser right in VS Code with the Runme notebook experience.
확장 프로그램 기본 정보
이름 | Runme Web Extension |
ID | lnihnbkolojkaehnkdmpliededkfebkk |
공식 URL | https://chromewebstore.google.com/detail/runme-web-extension/lnihnbkolojkaehnkdmpliededkfebkk |
설명 | A Runme browser extension to bring Runme capabilities into the browser. |
파일 크기 | 40.46 KB |
설치 횟수 | 61 |
현재 버전 | 0.0.11 |
최근 업데이트 | 2023-04-11 |
출시 날짜 | 2023-04-08 |
개발자 | https://stateful.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://runme.dev/ |
도움말 페이지 URL | https://discord.gg/BQm8zRCBUY |
개인정보 보호 정책 페이지 URL | https://stateful.com/privacy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Runme Web Extension", "author": "[email protected]", "description": "A Runme browser extension to bring Runme capabilities into the browser.", "homepage_url": "https:\/\/runme.dev", "version": "0.0.11", "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "run_at": "document_idle", "js": [ ".\/index.global.js" ], "css": [ ".\/style.css" ] } ], "permissions": [], "icons": { "72": "icon-72x72.png", "96": "icon-96x96.png", "128": "icon-128x128.png", "144": "icon-144x144.png", "152": "icon-152x152.png" }, "browser_specific_settings": { "gecko": { "id": "{7f52a323-53cf-43bf-a24b-3b5630e424c6}", "strict_min_version": "100.0" } } } |