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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://themetablog.io และคุณลักษณะหลักของมันคือ "This plugin is a Wordpress markup cleaner. It strips the HTML resulting from a google docs copy paste from all the unnecessary…"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GDocs to Wordpress markup cleaner

ดาวน์โหลดไฟล์ส่วนขยาย 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
    อีเมล [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"
                ]
            }
        ]
    }