Medium to Dev

This is utilized to export Medium stories to Dev.to

What is Medium to Dev?

Medium to Dev is a Chrome extension developed by nilmadhab1994, and its main feature is "This is utilized to export Medium stories to Dev.to".

Extension Screenshots

screenshot

Download Medium to Dev Extension CRX File

Download Medium to Dev extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Medium to Dev Medium to Dev
ID ebbpgnlogjlnchmlfiagmgifdcafpbef
Official URL https://chromewebstore.google.com/detail/medium-to-dev/ebbpgnlogjlnchmlfiagmgifdcafpbef
Description This is utilized to export Medium stories to Dev.to
File Size 765 KB
Installation Count 493
Current Version 0.0.1
Last Updated 2021-10-19
Publish Date 2021-03-21
Rating 3.00/5 Total 6 Ratings
Developer nilmadhab1994
Email [email protected]
Payment Type free
Supported Languages 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\/"
}