Medium to Dev
This is utilized to export Medium stories to Dev.to
Vad är Medium to Dev?
Medium to Dev är en Chrome-tillägg utvecklad av nilmadhab1994, och dess huvudfunktion är "This is utilized to export Medium stories to Dev.to".
Tilläggsskärmbilder
Ladda ner Medium to Dev-förlängningens CRX-fil
Ladda ner Medium to Dev-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | Medium to Dev |
ID | ebbpgnlogjlnchmlfiagmgifdcafpbef |
Officiell webbadress | https://chromewebstore.google.com/detail/medium-to-dev/ebbpgnlogjlnchmlfiagmgifdcafpbef |
Beskrivning | This is utilized to export Medium stories to Dev.to |
Filstorlek | 765 KB |
Antal Installationer | 493 |
Aktuell Version | 0.0.1 |
Senast Uppdaterad | 2021-10-19 |
Publiceringsdatum | 2021-03-21 |
Betyg | 3.00/5 Totalt 6 Betyg |
Utvecklare | nilmadhab1994 |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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\/" } |