GDocs to Wordpress markup cleaner

This plugin is a Wordpress markup cleaner. It strips the HTML resulting from a google docs copy paste from all the unnecessary…

Was ist GDocs to Wordpress markup cleaner?

GDocs to Wordpress markup cleaner ist eine Chrome-Erweiterung, die von https://themetablog.io entwickelt wurde, und ihr Hauptmerkmal ist "This plugin is a Wordpress markup cleaner. It strips the HTML resulting from a google docs copy paste from all the unnecessary…".

Erweiterungsscreenshots

screenshot
screenshot

GDocs to Wordpress markup cleaner-Erweiterungs-CRX-Datei herunterladen

Laden Sie GDocs to Wordpress markup cleaner-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 plugin is a Wordpress markup cleaner. 

It strips the HTML resulting from a google docs copy paste from all the unnecessary  tags and styles added to 
  • tags It also comes with a few options for proper link tag management: - Open internal links in a new tab (target="_blank;") - Add a specific class to all internal links - Make internal links relative (strip the domain name from the href attribute) - Open external links in a new tab (target="_blank;") - Add a specific class to all external links
  • Grundlegende Informationen zur Erweiterung

    Name GDocs to Wordpress markup cleaner GDocs to Wordpress markup cleaner
    ID gdlgbgmegnkhaefefkpahmkbmbjfdpmj
    Offizielle URL https://chromewebstore.google.com/detail/gdocs-to-wordpress-markup/gdlgbgmegnkhaefefkpahmkbmbjfdpmj
    Beschreibung This plugin is a Wordpress markup cleaner. It strips the HTML resulting from a google docs copy paste from all the unnecessary…
    Dateigröße 25.94 KB
    Installationsanzahl 84
    Aktuelle Version 1.1
    Letztes Update 2022-03-17
    Veröffentlichungsdatum 2022-02-23
    Bewertung 5.00/5 Insgesamt 5 Bewertungen
    Entwickler https://themetablog.io
    E-Mail [email protected]
    Zahlungsart free
    Erweiterungswebsite https://www.themetablog.io/
    Hilfeseite URL https://www.metacompany.co/contact
    Unterstützte Sprachen en-US
    manifest.json
    {
        "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
        "name": "GDocs to Wordpress markup cleaner",
        "version": "1.1",
        "manifest_version": 3,
        "background": {
            "service_worker": "background.js"
        },
        "permissions": [
            "storage"
        ],
        "action": [],
        "icons": {
            "128": "logo.png"
        },
        "content_scripts": [
            {
                "matches": [
                    "https:\/\/*\/wp-admin\/post.php?post*&action=edit*"
                ],
                "all_frames": true,
                "js": [
                    "content-script.js"
                ]
            }
        ]
    }