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…
Что такое GDocs to Wordpress markup cleaner?
GDocs to Wordpress markup cleaner - это расширение Chrome, разработанное https://themetablog.io, и его основная функция - "This plugin is a Wordpress markup cleaner. It strips the HTML resulting from a google docs copy paste from all the unnecessary…".
Снимки экрана расширения
Скачать файл CRX расширения GDocs to Wordpress markup cleaner
Скачайте файлы расширений GDocs to Wordpress markup cleaner в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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 Основная информация о расширении
| Название | |
| ID | gdlgbgmegnkhaefefkpahmkbmbjfdpmj |
| Официальный URL | https://chromewebstore.google.com/detail/gdocs-to-wordpress-markup/gdlgbgmegnkhaefefkpahmkbmbjfdpmj |
| Описание | This plugin is a Wordpress markup cleaner. It strips the HTML resulting from a google docs copy paste from all the unnecessary… |
| Размер файла | 25.94 KB |
| Количество установок | 84 |
| Текущая Версия | 1.1 |
| Последнее Обновление | 2022-03-17 |
| Дата публикации | 2022-02-23 |
| Рейтинг | 5.00/5 Всего 5 оценок |
| Разработчик | https://themetablog.io |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://www.themetablog.io/ |
| URL страницы помощи | https://www.metacompany.co/contact |
| Поддерживаемые языки | 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"
]
}
]
} | |