Web Page Editor
Make any webpage into a content document that you can modify from the toolbar!
Τι είναι το Web Page Editor;
Το Web Page Editor είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον christianhilton64, και η κύρια λειτουργία του είναι "Make any webpage into a content document that you can modify from the toolbar!".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Web Page Editor
Λήψη αρχείων επέκτασης Web Page Editor σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
The "Web Page Editor" is an add-on that allows you to modify any HTML page. To utilize this add-on, go to the toolbar popup UI and click on the big toggle button at the left side. The icon changes to blue color when the add-on is turned on. A - Design Mode - notification will appear in the current tab at the top left corner after you've activated the add-on. Now that your document is ready for editing, make any necessary modifications using text editing buttons accessible in the toolbar pop-up UI. After you're finished making changes, turn off the add-on by clicking on it again. To utilize text-editing tools in the toolbar popup UI, first choose a text and then click on a desired button inside the pop-up.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | hjcnckphjmabkomchilpckgebkodebjj |
Επίσημο URL | https://chrome.google.com/webstore/detail/web-page-editor/hjcnckphjmabkomchilpckgebkodebjj |
Περιγραφή | Make any webpage into a content document that you can modify from the toolbar! |
Μέγεθος Αρχείου | 228 KB |
Αριθμός Εγκαταστάσεων | 101 |
Τρέχουσα Έκδοση | 0.1 |
Τελευταία Ενημέρωση | 2022-05-20 |
Ημερομηνία Δημοσίευσης | 2022-05-20 |
Αξιολόγηση | 4.98/5 Συνολικά 44 Αξιολογήσεις |
Προγραμματιστής | christianhilton64 |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://worldaddons.com/web-page-editor/ |
Διεύθυνση URL της Σελίδας Βοήθειας | https://worldaddons.com/contact/ |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.1", "name": "Web Page Editor", "manifest_version": 3, "offline_enabled": true, "short_name": "web-page-editor", "permissions": [ "storage", "scripting", "activeTab" ], "homepage_url": "https:\/\/worldaddons.com\/web-page-editor\/", "description": "Make any webpage into a content document that you can modify from the toolbar!", "commands": { "_execute_action": [] }, "background": { "service_worker": "background.js" }, "action": { "default_title": "Web Page Editor", "default_popup": "resource\/popup\/popup.html", "default_icon": { "16": "resource\/icons\/16.png", "32": "resource\/icons\/32.png", "48": "resource\/icons\/48.png", "64": "resource\/icons\/64.png" } }, "icons": { "16": "resource\/icons\/16.png", "32": "resource\/icons\/32.png", "48": "resource\/icons\/48.png", "64": "resource\/icons\/64.png", "128": "resource\/icons\/128.png" } } |