Medium to Dev

This is utilized to export Medium stories to Dev.to

什么是Medium to Dev?

Medium to Dev是由nilmadhab1994开发的Chrome扩展程序,该扩展的主要功能是“This is utilized to export Medium stories to Dev.to”。

扩展截图

screenshot

下载Medium to Dev扩展crx文件

下载Medium to Dev扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Medium to Dev Medium to Dev
ID ebbpgnlogjlnchmlfiagmgifdcafpbef
官方URL https://chromewebstore.google.com/detail/medium-to-dev/ebbpgnlogjlnchmlfiagmgifdcafpbef
简介 This is utilized to export Medium stories to Dev.to
文件大小 765 KB
安装次数 493
当前版本 0.0.1
更新时间 2021-10-19
上架时间 2021-03-21
评分 3.00/5 共6次评分
开发者 nilmadhab1994
电子邮箱 [email protected]
付费类型 free
支持的语言 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\/"
}