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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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}"
        }
    }
}