Word Replace And Load
Replace all words you in your current page to anything you want!
Co to jest Word Replace And Load?
Word Replace And Load to rozszerzenie Chrome opracowane przez jerryblum.ideas, a jego główną funkcją jest „Replace all words you in your current page to anything you want!”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Word Replace And Load
Pobierz pliki rozszerzeń Word Replace And Load w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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!
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | pbjnbneghgdchjkbeiifmfigjcgbefoi |
Oficjalny URL | https://chrome.google.com/webstore/detail/word-replace-and-load/pbjnbneghgdchjkbeiifmfigjcgbefoi |
Opis | Replace all words you in your current page to anything you want! |
Rozmiar pliku | 18.75 KB |
Liczba instalacji | 3,635 |
Aktualna Wersja | 1 |
Ostatnia Aktualizacja | 2022-12-26 |
Data Publikacji | 2022-12-26 |
Ocena | 1.00/5 Łącznie 1 Oceny |
Deweloper | jerryblum.ideas |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://home.wallationdistry.xyz/ |
Adres URL Strony Pomocy | https://home.wallationdistry.xyz/contact.html |
Obsługiwane Języki | 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" ] } ] } |