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
Βασικές Πληροφορίες Επέκτασης
Όνομα | 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" ] } ] } |