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…

什麼是GDocs to Wordpress markup cleaner?

GDocs to Wordpress markup cleaner是由https://themetablog.io開發的Chrome擴展程式,該擴展的主要功能是“This plugin is a Wordpress markup cleaner. It strips the HTML resulting from a google docs copy paste from all the unnecessary…”。

擴展截圖

screenshot
screenshot

下載GDocs to Wordpress markup cleaner擴展crx文件

下載GDocs to Wordpress markup cleaner擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
  • 擴展基本資訊

    名稱 GDocs to Wordpress markup cleaner GDocs to Wordpress markup cleaner
    ID gdlgbgmegnkhaefefkpahmkbmbjfdpmj
    官方網址 https://chromewebstore.google.com/detail/gdocs-to-wordpress-markup/gdlgbgmegnkhaefefkpahmkbmbjfdpmj
    簡介 This plugin is a Wordpress markup cleaner. It strips the HTML resulting from a google docs copy paste from all the unnecessary…
    檔案大小 25.94 KB
    安裝次數 84
    目前版本 1.1
    更新時間 2022-03-17
    上架時間 2022-02-23
    評分 5.00/5 共 5 次評分
    開發者 https://themetablog.io
    電子郵箱 [email protected]
    付費類型 free
    擴展官網 https://www.themetablog.io/
    說明頁面URL https://www.metacompany.co/contact
    支援的語言 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"
                ]
            }
        ]
    }