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是由https://themetablog.io开发的Chrome扩展程序,该扩展的主要功能是“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扩展crx文件
下载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
扩展基本信息
名称 | GDocs to Wordpress markup cleaner |
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" ] } ] } |