Medium to Dev
This is utilized to export Medium stories to Dev.to
Medium to Dev란 무엇입니까?
Medium to Dev은(는) nilmadhab1994에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This is utilized to export Medium stories to Dev.to"입니다.
확장 프로그램 스크린샷
Medium to Dev 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
How to use the extension Open your medium story in the edit mode. Click on the medium-to-dev extension (this extension) Click on copy to clipboard Click on copy to Dev.to The markdown of the article should be visible in the new post page of Dev.to
확장 프로그램 기본 정보
이름 | Medium to Dev |
ID | ebbpgnlogjlnchmlfiagmgifdcafpbef |
공식 URL | https://chromewebstore.google.com/detail/medium-to-dev/ebbpgnlogjlnchmlfiagmgifdcafpbef |
설명 | This is utilized to export Medium stories to Dev.to |
파일 크기 | 765 KB |
설치 횟수 | 493 |
현재 버전 | 0.0.1 |
최근 업데이트 | 2021-10-19 |
출시 날짜 | 2021-03-21 |
평점 | 3.00/5 총 6 개의 평점 |
개발자 | nilmadhab1994 |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Medium to Dev", "short_name": "mediumtodev", "description": "This is utilized to export Medium stories to Dev.to", "version": "0.0.1", "icons": { "128": "icons\/medium.png" }, "permissions": [ "activeTab", "https:\/\/medium.com\/*", "https:\/\/dev.to\/*", "storage" ], "content_scripts": [ { "run_at": "document_idle", "matches": [ "https:\/\/dev.to\/new" ], "js": [ "dev.js" ] } ], "browser_action": { "default_title": "Medium to Dev", "default_icon": "icons\/medium.png", "default_popup": "popup.html" }, "manifest_version": 2, "homepage_url": "https:\/\/www.simplecoding.dev\/" } |