Word Replace And Load
Replace all words you in your current page to anything you want!
Τι είναι το Word Replace And Load;
Το Word Replace And Load είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον jerryblum.ideas, και η κύρια λειτουργία του είναι "Replace all words you in your current page to anything you want!".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Word Replace And Load
Λήψη αρχείων επέκτασης Word Replace And Load σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This extension allows users to easily replace a specific word with a different word of their choosing on any webpage. Simply type in the word you wish to replace and the word you want to use as a replacement, and the extension will automatically replace every instance of the chosen word on the page. This can be useful for correcting typos, updating outdated language, or simply personalizing the content of a webpage to your liking. The extension works on any website and can even be used to replace words within text forms, making it a versatile and convenient tool for modifying web content!
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | pbjnbneghgdchjkbeiifmfigjcgbefoi |
Επίσημο URL | https://chrome.google.com/webstore/detail/word-replace-and-load/pbjnbneghgdchjkbeiifmfigjcgbefoi |
Περιγραφή | Replace all words you in your current page to anything you want! |
Μέγεθος Αρχείου | 18.75 KB |
Αριθμός Εγκαταστάσεων | 3,635 |
Τρέχουσα Έκδοση | 1 |
Τελευταία Ενημέρωση | 2022-12-26 |
Ημερομηνία Δημοσίευσης | 2022-12-26 |
Αξιολόγηση | 1.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | jerryblum.ideas |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://home.wallationdistry.xyz/ |
Διεύθυνση URL της Σελίδας Βοήθειας | https://home.wallationdistry.xyz/contact.html |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Replace all words you in your current page to anything you want!", "icons": { "128": "logo.png" }, "action": { "default_icon": "logo.png", "default_title": "Word Replace And Load", "default_popup": "popup.html" }, "manifest_version": 3, "name": "Word Replace And Load", "version": "1", "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "content.js" ] } ] } |