Medium to Dev

This is utilized to export Medium stories to Dev.to

Hvad er Medium to Dev?

Medium to Dev er en Chrome-udvidelse udviklet af nilmadhab1994, og dens hovedfunktion er "This is utilized to export Medium stories to Dev.to".

Udvidelsesskærmbilleder

screenshot

Download Medium to Dev-udvidelses-CRX-fil

Download Medium to Dev-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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æggende oplysninger om udvidelsen

Navn Medium to Dev Medium to Dev
ID ebbpgnlogjlnchmlfiagmgifdcafpbef
Officiel URL https://chromewebstore.google.com/detail/medium-to-dev/ebbpgnlogjlnchmlfiagmgifdcafpbef
Beskrivelse This is utilized to export Medium stories to Dev.to
Filstørrelse 765 KB
Antal Installationer 493
Nuværende Version 0.0.1
Senest Opdateret 2021-10-19
Udgivelsesdato 2021-03-21
Bedømmelse 3.00/5 Samlet 6 Bedømmelser
Udvikler nilmadhab1994
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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\/"
}