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…
Co je GDocs to Wordpress markup cleaner?
GDocs to Wordpress markup cleaner je rozšíření Chrome vyvinuté https://themetablog.io, a jeho hlavní funkcí je „This plugin is a Wordpress markup cleaner. It strips the HTML resulting from a google docs copy paste from all the unnecessary…“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření GDocs to Wordpress markup cleaner
Stáhněte si soubory rozšíření GDocs to Wordpress markup cleaner ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | GDocs to Wordpress markup cleaner |
ID | gdlgbgmegnkhaefefkpahmkbmbjfdpmj |
Oficiální URL | https://chromewebstore.google.com/detail/gdocs-to-wordpress-markup/gdlgbgmegnkhaefefkpahmkbmbjfdpmj |
Popis | This plugin is a Wordpress markup cleaner. It strips the HTML resulting from a google docs copy paste from all the unnecessary… |
Velikost souboru | 25.94 KB |
Počet instalací | 84 |
Aktuální Verze | 1.1 |
Poslední Aktualizace | 2022-03-17 |
Datum Vydání | 2022-02-23 |
Hodnocení | 5.00/5 Celkem 5 Hodnocení |
Vývojář | https://themetablog.io |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://www.themetablog.io/ |
URL Stránky Nápovědy | https://www.metacompany.co/contact |
Podporované Jazyky | 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" ] } ] } |