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によって開発されたChromeの拡張機能で、その主な機能は「Writer wants to the things right. This means using software to catch errors early on. One of the market's favourite, Grammarly,…」です。

拡張機能のスクリーンショット

screenshot

Grammarly to Markdown拡張機能のCRXファイルをダウンロード

Grammarly to Markdown拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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}"
        }
    }
}