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…
Apa itu GDocs to Wordpress markup cleaner?
GDocs to Wordpress markup cleaner adalah ekstensi Chrome yang dikembangkan oleh https://themetablog.io, dan fitur utamanya adalah "This plugin is a Wordpress markup cleaner. It strips the HTML resulting from a google docs copy paste from all the unnecessary…".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi GDocs to Wordpress markup cleaner
Unduh file ekstensi GDocs to Wordpress markup cleaner dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | GDocs to Wordpress markup cleaner |
ID | gdlgbgmegnkhaefefkpahmkbmbjfdpmj |
URL Resmi | https://chromewebstore.google.com/detail/gdocs-to-wordpress-markup/gdlgbgmegnkhaefefkpahmkbmbjfdpmj |
Deskripsi | This plugin is a Wordpress markup cleaner. It strips the HTML resulting from a google docs copy paste from all the unnecessary… |
Ukuran File | 25.94 KB |
Jumlah Instalasi | 84 |
Versi Saat Ini | 1.1 |
Terakhir Diperbarui | 2022-03-17 |
Tanggal Publikasi | 2022-02-23 |
Penilaian | 5.00/5 Total 5 Penilaian |
Pengembang | https://themetablog.io |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://www.themetablog.io/ |
URL Halaman Bantuan | https://www.metacompany.co/contact |
Bahasa yang Didukung | 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" ] } ] } |