Simplify AI

Simplify text with a single click.

Was ist Simplify AI?

Simplify AI ist eine Chrome-Erweiterung, die von Calix Huang entwickelt wurde, und ihr Hauptmerkmal ist "Simplify text with a single click.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Simplify AI-Erweiterungs-CRX-Datei herunterladen

Laden Sie Simplify AI-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

                        Have you ever been reading something but it's just too complicated, and you can't understand it? With Simplify AI, you can *simply* highlight, right-click, and simplify the text. We simplify the text you highlighted and inject it right back into the web page.

It's as simple as that.

Built by Calix Huang (@calixo888)                    

Grundlegende Informationen zur Erweiterung

Name Simplify AI Simplify AI
ID ajjelinkcmnghbblfilfgpohdpimemoj
Offizielle URL https://chromewebstore.google.com/detail/simplify-ai/ajjelinkcmnghbblfilfgpohdpimemoj
Beschreibung Simplify text with a single click.
Dateigröße 13.8 KB
Installationsanzahl 488
Aktuelle Version 0.0.3
Letztes Update 2023-04-29
Veröffentlichungsdatum 2023-02-28
Entwickler Calix Huang
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Simplify AI",
    "description": "Simplify text with a single click.",
    "version": "0.0.3",
    "manifest_version": 3,
    "permissions": [
        "activeTab",
        "contextMenus"
    ],
    "icons": {
        "16": "assets\/icon.png",
        "32": "assets\/icon.png",
        "48": "assets\/icon.png",
        "128": "assets\/icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background_script.js"
    }
}