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…
Vad är GDocs to Wordpress markup cleaner?
GDocs to Wordpress markup cleaner är en Chrome-tillägg utvecklad av https://themetablog.io, och dess huvudfunktion är "This plugin is a Wordpress markup cleaner. It strips the HTML resulting from a google docs copy paste from all the unnecessary…".
Tilläggsskärmbilder
Ladda ner GDocs to Wordpress markup cleaner-förlängningens CRX-fil
Ladda ner GDocs to Wordpress markup cleaner-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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 Grundläggande Information om Tillägg
| Namn | |
| ID | gdlgbgmegnkhaefefkpahmkbmbjfdpmj |
| Officiell webbadress | https://chromewebstore.google.com/detail/gdocs-to-wordpress-markup/gdlgbgmegnkhaefefkpahmkbmbjfdpmj |
| Beskrivning | This plugin is a Wordpress markup cleaner. It strips the HTML resulting from a google docs copy paste from all the unnecessary… |
| Filstorlek | 25.94 KB |
| Antal Installationer | 84 |
| Aktuell Version | 1.1 |
| Senast Uppdaterad | 2022-03-17 |
| Publiceringsdatum | 2022-02-23 |
| Betyg | 5.00/5 Totalt 5 Betyg |
| Utvecklare | https://themetablog.io |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://www.themetablog.io/ |
| Hjälpsida URL | https://www.metacompany.co/contact |
| Stödda Språk | 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"
]
}
]
} | |