Medium to Dev
This is utilized to export Medium stories to Dev.to
Was ist Medium to Dev?
Medium to Dev ist eine Chrome-Erweiterung, die von nilmadhab1994 entwickelt wurde, und ihr Hauptmerkmal ist "This is utilized to export Medium stories to Dev.to".
Erweiterungsscreenshots
Medium to Dev-Erweiterungs-CRX-Datei herunterladen
Laden Sie Medium to Dev-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Medium to Dev |
ID | ebbpgnlogjlnchmlfiagmgifdcafpbef |
Offizielle URL | https://chromewebstore.google.com/detail/medium-to-dev/ebbpgnlogjlnchmlfiagmgifdcafpbef |
Beschreibung | This is utilized to export Medium stories to Dev.to |
Dateigröße | 765 KB |
Installationsanzahl | 493 |
Aktuelle Version | 0.0.1 |
Letztes Update | 2021-10-19 |
Veröffentlichungsdatum | 2021-03-21 |
Bewertung | 3.00/5 Insgesamt 6 Bewertungen |
Entwickler | nilmadhab1994 |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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\/" } |