Excellent Selection

Transform selected text using one of several built-in filters.

Что такое Excellent Selection?

Excellent Selection - это расширение Chrome, разработанное Travis Paul, и его основная функция - "Transform selected text using one of several built-in filters.".

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

screenshot

Скачать файл CRX расширения Excellent Selection

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

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

                        The commands listed below are added to the right-click context menu of selected text. You can enable or disable each command in the options menu as well as set a custom text selection color.

• Lowercase
• Uppercase
• Uppercase Words
• Length
• Shuffle
• Reverse
• Search and Replace
• Word Count
• Word Wrap
• Base64 Encode
• Base64 Decode
• URL Encode
• Strip Tags
• Remove Whitespace
• Format XML
• Format JSON
• Format CSS
• Format SQL
• MD5
• SHA-1
• SHA-224
• SHA-256
• SHA-384
• SHA-512
• ROT13
• Pig Latin

You can fork this extension at github: https://github.com/TravisPaul/crx-excellent-selection                    

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

Название Excellent Selection Excellent Selection
ID enhkggpdbpffnbhbaimnpdjbmenlhmkm
Официальный URL https://chromewebstore.google.com/detail/excellent-selection/enhkggpdbpffnbhbaimnpdjbmenlhmkm
Описание Transform selected text using one of several built-in filters.
Размер файла 82.43 KB
Количество установок 419
Текущая Версия 1.7.1
Последнее Обновление 2017-05-22
Дата публикации 2017-05-22
Рейтинг 3.78/5 Всего 9 оценок
Разработчик Travis Paul
Тип оплаты free
Официальный сайт расширения https://github.com/TravisPaul/crx-excellent-selection
URL страницы помощи https://github.com/TravisPaul/crx-excellent-selection/issues
Поддерживаемые языки en,es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "version": "1.7.1",
    "manifest_version": 2,
    "description": "__MSG_extDescription__",
    "default_locale": "en",
    "icons": {
        "16": "img\/16.png",
        "48": "img\/48.png",
        "128": "img\/128.png"
    },
    "options_page": "options.html",
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "permissions": [
        "clipboardWrite",
        "contextMenus",
        "unlimitedStorage"
    ],
    "offline_enabled": true,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/selection.js"
            ]
        }
    ]
}