CUTool

online text tools, including json formmater, text diff, url encoding & etc.

Что такое CUTool?

CUTool - это расширение Chrome, разработанное https://cutool.online, и его основная функция - "online text tools, including json formmater, text diff, url encoding & etc.".

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

screenshot
screenshot
screenshot

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

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

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

                        This is a tool which temporarily support json formatter, code diff, text diff, text edit, url encode, url decode, url params extrator, regex etc. And this tool will help you format json automaticly when you visit json in chrome (like json formatter). wish you enjoy it ~                    

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

Название CUTool CUTool
ID pnadcjmfdflpblaogepdpeooialeelno
Официальный URL https://chromewebstore.google.com/detail/cutool/pnadcjmfdflpblaogepdpeooialeelno
Описание online text tools, including json formmater, text diff, url encoding & etc.
Размер файла 30.35 KB
Количество установок 84
Текущая Версия 1.0.3
Последнее Обновление 2021-04-24
Дата публикации 2021-03-24
Разработчик https://cutool.online
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CUTool",
    "version": "1.0.3",
    "minimum_chrome_version": "21",
    "browser_action": {
        "default_icon": {
            "16": "img\/icon.png",
            "48": "img\/icon.png",
            "128": "img\/icon.png"
        },
        "default_title": "Cu Tool",
        "default_popup": "popup.html"
    },
    "description": "online text tools, including json formmater, text diff, url encoding & etc.",
    "icons": {
        "16": "img\/icon.png",
        "48": "img\/icon.png",
        "128": "img\/icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "*:\/\/*\/*",
                ""
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "permissions": [
        "*:\/\/*\/*",
        "",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "author": "xtestw",
    "homepage_url": "https:\/\/cutool.online",
    "offline_enabled": true,
    "omnibox": {
        "keyword": "tool"
    }
}