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…

Cos'è GDocs to Wordpress markup cleaner?

GDocs to Wordpress markup cleaner è un'estensione di Chrome sviluppata da https://themetablog.io, e la sua funzione principale è "This plugin is a Wordpress markup cleaner. It strips the HTML resulting from a google docs copy paste from all the unnecessary…".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione GDocs to Wordpress markup cleaner

Scarica i file di estensione GDocs to Wordpress markup cleaner in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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
  • Informazioni di Base sull'Estensione

    Nome GDocs to Wordpress markup cleaner GDocs to Wordpress markup cleaner
    ID gdlgbgmegnkhaefefkpahmkbmbjfdpmj
    URL Ufficiale https://chromewebstore.google.com/detail/gdocs-to-wordpress-markup/gdlgbgmegnkhaefefkpahmkbmbjfdpmj
    Descrizione This plugin is a Wordpress markup cleaner. It strips the HTML resulting from a google docs copy paste from all the unnecessary…
    Dimensione del File 25.94 KB
    Conteggio Installazioni 84
    Versione Corrente 1.1
    Ultimo Aggiornamento 2022-03-17
    Data di Pubblicazione 2022-02-23
    Valutazione 5.00/5 Totale 5 Valutazioni
    Sviluppatore https://themetablog.io
    Email [email protected]
    Tipo di Pagamento free
    Sito Web dell'Estensione https://www.themetablog.io/
    URL della Pagina di Aiuto https://www.metacompany.co/contact
    Lingue Supportate 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"
                ]
            }
        ]
    }