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…
What is GDocs to Wordpress markup cleaner?
GDocs to Wordpress markup cleaner is a Chrome extension developed by https://themetablog.io, and its main feature is "This plugin is a Wordpress markup cleaner. It strips the HTML resulting from a google docs copy paste from all the unnecessary…".
Extension Screenshots
Download GDocs to Wordpress markup cleaner Extension CRX File
Download GDocs to Wordpress markup cleaner extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | GDocs to Wordpress markup cleaner |
ID | gdlgbgmegnkhaefefkpahmkbmbjfdpmj |
Official URL | https://chromewebstore.google.com/detail/gdocs-to-wordpress-markup/gdlgbgmegnkhaefefkpahmkbmbjfdpmj |
Description | This plugin is a Wordpress markup cleaner. It strips the HTML resulting from a google docs copy paste from all the unnecessary… |
File Size | 25.94 KB |
Installation Count | 84 |
Current Version | 1.1 |
Last Updated | 2022-03-17 |
Publish Date | 2022-02-23 |
Rating | 5.00/5 Total 5 Ratings |
Developer | https://themetablog.io |
[email protected] | |
Payment Type | free |
Extension Website | https://www.themetablog.io/ |
Help Page URL | https://www.metacompany.co/contact |
Supported Languages | 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" ] } ] } |