Medium to Dev
This is utilized to export Medium stories to Dev.to
Wat is Medium to Dev?
Medium to Dev is een Chrome-extensie ontwikkeld door nilmadhab1994, en de belangrijkste functie is "This is utilized to export Medium stories to Dev.to".
Extensie Screenshots
Download het CRX-bestand van de extensie Medium to Dev
Download Medium to Dev-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Medium to Dev |
ID | ebbpgnlogjlnchmlfiagmgifdcafpbef |
Officiële URL | https://chromewebstore.google.com/detail/medium-to-dev/ebbpgnlogjlnchmlfiagmgifdcafpbef |
Beschrijving | This is utilized to export Medium stories to Dev.to |
Bestandsgrootte | 765 KB |
Aantal Installaties | 493 |
Huidige Versie | 0.0.1 |
Laatst Bijgewerkt | 2021-10-19 |
Publicatiedatum | 2021-03-21 |
Beoordeling | 3.00/5 Totaal 6 Beoordelingen |
Ontwikkelaar | nilmadhab1994 |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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\/" } |