select and convert to markdown

Copy select text and convert to Markdown code

Что такое select and convert to markdown?

select and convert to markdown - это расширение Chrome, разработанное TheMaple Network Inc., и его основная функция - "Copy select text and convert to Markdown code".

Скачать файл CRX расширения select and convert to markdown

Скачайте файлы расширений select and convert to markdown в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        作者:suziwen

主要功能有:

1. 选择文本后右键选择转换为markdown格式
* 直接转换成 markdown
* 转换成 markdown+ 文章来源地址
* 转换成 title + markdown + 文章来源地址
2. 在图片上右键选择时可直接将图片地址转换成markdown的图片链接格式
3. 在链接上右键选择时可将该链接转换成markdown的普通链接格式
4.在页面的空白处右键选择时可将该页地址转换成markdown的普通格式

目前存在的问题:

1. 不支持frame,iframe里的内容选择                    

Основная информация о расширении

Название select and convert to markdown select and convert to markdown
ID igbjomagkpbgfofncgmkikopblijmbil
Официальный URL https://chrome.google.com/webstore/detail/select-and-convert-to-mar/igbjomagkpbgfofncgmkikopblijmbil
Описание Copy select text and convert to Markdown code
Размер файла 92.53 KB
Количество установок 64
Текущая Версия 0.1.0
Последнее Обновление 2014-01-12
Дата публикации 2014-01-12
Рейтинг 3.00/5 Всего 3 оценок
Разработчик TheMaple Network Inc.
Тип оплаты free
Поддерживаемые языки zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "select and convert to markdown",
    "version": "0.1.0",
    "manifest_version": 2,
    "description": "Copy select text and convert to Markdown code",
    "permissions": [
        "tabs",
        "contextMenus",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "toolbar-copy-convert-markdown.png",
        "48": "toolbar-copy-convert-markdown.png",
        "128": "toolbar-copy-convert-markdown.png"
    },
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": false,
            "js": [
                "content_script.js"
            ]
        }
    ]
}