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…

Wat is GDocs to Wordpress markup cleaner?

GDocs to Wordpress markup cleaner is een Chrome-extensie ontwikkeld door https://themetablog.io, en de belangrijkste functie is "This plugin is a Wordpress markup cleaner. It strips the HTML resulting from a google docs copy paste from all the unnecessary…".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie GDocs to Wordpress markup cleaner

Download GDocs to Wordpress markup cleaner-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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
  • Basisinformatie over de Extensie

    Naam GDocs to Wordpress markup cleaner GDocs to Wordpress markup cleaner
    ID gdlgbgmegnkhaefefkpahmkbmbjfdpmj
    Officiële URL https://chromewebstore.google.com/detail/gdocs-to-wordpress-markup/gdlgbgmegnkhaefefkpahmkbmbjfdpmj
    Beschrijving This plugin is a Wordpress markup cleaner. It strips the HTML resulting from a google docs copy paste from all the unnecessary…
    Bestandsgrootte 25.94 KB
    Aantal Installaties 84
    Huidige Versie 1.1
    Laatst Bijgewerkt 2022-03-17
    Publicatiedatum 2022-02-23
    Beoordeling 5.00/5 Totaal 5 Beoordelingen
    Ontwikkelaar https://themetablog.io
    E-mail [email protected]
    Betalingswijze free
    Extensiewebsite https://www.themetablog.io/
    Help Pagina-URL https://www.metacompany.co/contact
    Ondersteunde Talen 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"
                ]
            }
        ]
    }