Grammarly to Markdown

Writer wants to the things right. This means using software to catch errors early on. One of the market's favourite, Grammarly,…

Grammarly to Markdown क्या है?

Grammarly to Markdown brunoluiz द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Writer wants to the things right. This means using software to catch errors early on. One of the market's favourite, Grammarly,…"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Grammarly to Markdown एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Writer wants to the things right. This means using software to catch errors early on. One of the market's favourite, Grammarly, does the job quite well on it. It doesn't export to Markdown though -- developers favourite format. This tool converts Grammarly texts to Markdown, copying it to the clipboard after been converted. 

1. Open any document in Grammarly -- URL might be `https://app.grammarly.com/ddocs/*`
2. Click on the extension button on the toolbar
3. It should be copied to your clipboard
4. Profit 🚀

Feel free to open issues and pull requests: https://github.com/brunoluiz/grammarly-markdown-extension                    

एक्सटेंशन की मूल जानकारी

नाम Grammarly to Markdown Grammarly to Markdown
ID bjodbpcjeogaihbekannledankhcjbgo
आधिकारिक URL https://chromewebstore.google.com/detail/grammarly-to-markdown/bjodbpcjeogaihbekannledankhcjbgo
विवरण Writer wants to the things right. This means using software to catch errors early on. One of the market's favourite, Grammarly,…
फ़ाइल का आकार 439 KB
स्थापना संख्या 14,859
वर्तमान संस्करण 2.1.1
अंतिम अपडेट 2022-10-31
प्रकाशन तिथि 2020-05-08
रेटिंग 3.71/5 कुल 14 रेटिंग्स
डेवलपर brunoluiz
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://brunoluiz.net/grammarly-markdown-extension
सहायता पृष्ठ URL https://github.com/brunoluiz/grammarly-markdown-extension
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "2.1.1",
    "name": "Grammarly to Markdown",
    "author": "Bruno Luiz Silva ",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.grammarly.com\/*"
            ],
            "all_frames": true,
            "js": [
                "src\/js\/content.js"
            ]
        }
    ],
    "options_page": "src\/options.html",
    "action": {
        "default_popup": "src\/popup.html",
        "default_icon": {
            "48": "src\/img\/icon-48.png",
            "128": "src\/img\/icon-128.png"
        }
    },
    "permissions": [
        "storage",
        "activeTab",
        "clipboardWrite"
    ],
    "host_permissions": [
        "*:\/\/*.grammarly.com\/*"
    ],
    "icons": {
        "48": "src\/img\/icon-48.png",
        "128": "src\/img\/icon-128.png"
    },
    "content_security_policy": {
        "extension_pages": "default-src 'self'",
        "sandbox": "sandbox allow-scripts; default-src 'self'"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "{01e4670b-532b-42ed-88c2-c7b46d05133a}"
        }
    },
    "applications": {
        "gecko": {
            "id": "{01e4670b-532b-42ed-88c2-c7b46d05133a}"
        }
    }
}