Medium to Dev
This is utilized to export Medium stories to Dev.to
Apa itu Medium to Dev?
Medium to Dev adalah ekstensi Chrome yang dikembangkan oleh nilmadhab1994, dan fitur utamanya adalah "This is utilized to export Medium stories to Dev.to".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Medium to Dev
Unduh file ekstensi Medium to Dev dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | Medium to Dev |
ID | ebbpgnlogjlnchmlfiagmgifdcafpbef |
URL Resmi | https://chromewebstore.google.com/detail/medium-to-dev/ebbpgnlogjlnchmlfiagmgifdcafpbef |
Deskripsi | This is utilized to export Medium stories to Dev.to |
Ukuran File | 765 KB |
Jumlah Instalasi | 493 |
Versi Saat Ini | 0.0.1 |
Terakhir Diperbarui | 2021-10-19 |
Tanggal Publikasi | 2021-03-21 |
Penilaian | 3.00/5 Total 6 Penilaian |
Pengembang | nilmadhab1994 |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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\/" } |