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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } ] } |