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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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/
    عنوان صفحة المساعدة 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"
                ]
            }
        ]
    }