Insert HTML by Designmodo

Insert custom HTML format Gmail.

Was ist Insert HTML by Designmodo?

Insert HTML by Designmodo ist eine Chrome-Erweiterung, die von https://designmodo.com entwickelt wurde, und ihr Hauptmerkmal ist "Insert custom HTML format Gmail.".

Erweiterungsscreenshots

screenshot
screenshot

Insert HTML by Designmodo-Erweiterungs-CRX-Datei herunterladen

Laden Sie Insert HTML by Designmodo-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 Extension injects an icon inside Gmail Compose text area. On the click event, it will open a modal popup where you can paste your html script in.

We don't collect any privacy data.                    

Grundlegende Informationen zur Erweiterung

Name Insert HTML by Designmodo Insert HTML by Designmodo
ID bcflbfdlpegakpncdgmejelcolhmfkjh
Offizielle URL https://chromewebstore.google.com/detail/insert-html-by-designmodo/bcflbfdlpegakpncdgmejelcolhmfkjh
Beschreibung Insert custom HTML format Gmail.
Dateigröße 521 KB
Installationsanzahl 23,797
Aktuelle Version 1.0.4
Letztes Update 2022-08-16
Veröffentlichungsdatum 2021-03-26
Bewertung 3.61/5 Insgesamt 23 Bewertungen
Entwickler https://designmodo.com
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://designmodo.com/privacy-statement
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Insert HTML by Designmodo",
    "short_name": "Insert HTML in Gmail",
    "description": "Insert custom HTML format Gmail.",
    "version": "1.0.4",
    "host_permissions": [
        "*:\/\/mail.google.com\/*",
        "*:\/\/inbox.google.com\/*"
    ],
    "content_security_policy": {
        "extension_page": "script-src 'self' 'unsafe-eval'; object-src 'self'"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/mail.google.com\/*",
                "*:\/\/inbox.google.com\/*"
            ],
            "js": [
                "js\/inboxsdk.js",
                "js\/injectInCompose.js",
                "js\/injectInSign.js",
                "js\/contentHelper.js",
                "js\/content.js"
            ],
            "css": [
                "css\/content.css"
            ]
        }
    ],
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "resources\/*"
            ],
            "matches": [
                "*:\/\/mail.google.com\/*",
                "*:\/\/inbox.google.com\/*"
            ]
        }
    ]
}