CUTool

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

Was ist CUTool?

CUTool ist eine Chrome-Erweiterung, die von https://cutool.online entwickelt wurde, und ihr Hauptmerkmal ist "online text tools, including json formmater, text diff, url encoding & etc.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

CUTool-Erweiterungs-CRX-Datei herunterladen

Laden Sie CUTool-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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 ~                    

Grundlegende Informationen zur Erweiterung

Name CUTool CUTool
ID pnadcjmfdflpblaogepdpeooialeelno
Offizielle URL https://chromewebstore.google.com/detail/cutool/pnadcjmfdflpblaogepdpeooialeelno
Beschreibung online text tools, including json formmater, text diff, url encoding & etc.
Dateigröße 30.35 KB
Installationsanzahl 84
Aktuelle Version 1.0.3
Letztes Update 2021-04-24
Veröffentlichungsdatum 2021-03-24
Entwickler https://cutool.online
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    }
}