Copy As HTML Entity

Copies the HTML Entity version of the selected Unicode characters

Что такое Copy As HTML Entity?

Copy As HTML Entity - это расширение Chrome, разработанное Punit Gupta, и его основная функция - "Copies the HTML Entity version of the selected Unicode characters".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Copy As HTML Entity

Скачайте файлы расширений Copy As HTML Entity в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        Consider a situation when you want to put up a translation of some paragraph on your website in a non-Roman language, say, Hindi, Chinese, Japanese etc. without going through the trouble of converting each character or worrying about support in all browsers.

This extension basically copies your text as HTML Entity, with just a right-click and copy as HTML!                    

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

Название Copy As HTML Entity Copy As HTML Entity
ID ejmbegdldjamapdfkkaflffkmomjmlbf
Официальный URL https://chromewebstore.google.com/detail/copy-as-html-entity/ejmbegdldjamapdfkkaflffkmomjmlbf
Описание Copies the HTML Entity version of the selected Unicode characters
Размер файла 11.69 KB
Количество установок 150
Текущая Версия 0.2
Последнее Обновление 2017-03-19
Дата публикации 2017-03-19
Разработчик Punit Gupta
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy As HTML Entity",
    "description": "Copies the HTML Entity version of the selected Unicode characters",
    "version": "0.2",
    "permissions": [
        "contextMenus",
        "clipboardRead",
        "clipboardWrite"
    ],
    "background": {
        "scripts": [
            "script.js"
        ]
    },
    "icons": {
        "16": "icons\/16x16.png",
        "48": "icons\/48x48.png",
        "128": "icons\/128x128.png"
    },
    "manifest_version": 2
}