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 to jest GDocs to Wordpress markup cleaner?
GDocs to Wordpress markup cleaner to rozszerzenie Chrome opracowane przez https://themetablog.io, a jego główną funkcją jest „This plugin is a Wordpress markup cleaner. It strips the HTML resulting from a google docs copy paste from all the unnecessary…”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia GDocs to Wordpress markup cleaner
Pobierz pliki rozszerzeń GDocs to Wordpress markup cleaner w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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 Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | gdlgbgmegnkhaefefkpahmkbmbjfdpmj |
| Oficjalny URL | https://chromewebstore.google.com/detail/gdocs-to-wordpress-markup/gdlgbgmegnkhaefefkpahmkbmbjfdpmj |
| Opis | This plugin is a Wordpress markup cleaner. It strips the HTML resulting from a google docs copy paste from all the unnecessary… |
| Rozmiar pliku | 25.94 KB |
| Liczba instalacji | 84 |
| Aktualna Wersja | 1.1 |
| Ostatnia Aktualizacja | 2022-03-17 |
| Data Publikacji | 2022-02-23 |
| Ocena | 5.00/5 Łącznie 5 Oceny |
| Deweloper | https://themetablog.io |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://www.themetablog.io/ |
| Adres URL Strony Pomocy | https://www.metacompany.co/contact |
| Obsługiwane Języki | 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"
]
}
]
} | |