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
    公式URL 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
    Eメール [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"
                ]
            }
        ]
    }