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…

O que é GDocs to Wordpress markup cleaner?

GDocs to Wordpress markup cleaner é uma extensão do Chrome desenvolvida por https://themetablog.io, e sua principal característica é "This plugin is a Wordpress markup cleaner. It strips the HTML resulting from a google docs copy paste from all the unnecessary…".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão GDocs to Wordpress markup cleaner

Baixe arquivos de extensão GDocs to Wordpress markup cleaner no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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
  • Informações Básicas da Extensão

    Nome GDocs to Wordpress markup cleaner GDocs to Wordpress markup cleaner
    ID gdlgbgmegnkhaefefkpahmkbmbjfdpmj
    URL Oficial https://chromewebstore.google.com/detail/gdocs-to-wordpress-markup/gdlgbgmegnkhaefefkpahmkbmbjfdpmj
    Descrição This plugin is a Wordpress markup cleaner. It strips the HTML resulting from a google docs copy paste from all the unnecessary…
    Tamanho do Arquivo 25.94 KB
    Contagem de Instalações 84
    Versão Atual 1.1
    Última Atualização 2022-03-17
    Data de Publicação 2022-02-23
    Classificação 5.00/5 Total de 5 Avaliações
    Desenvolvedor https://themetablog.io
    Email [email protected]
    Tipo de Pagamento free
    Site da Extensão https://www.themetablog.io/
    URL da Página de Ajuda https://www.metacompany.co/contact
    Idiomas Suportados 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"
                ]
            }
        ]
    }