Word Replace And Load
Replace all words you in your current page to anything you want!
Co je Word Replace And Load?
Word Replace And Load je rozšíření Chrome vyvinuté jerryblum.ideas, a jeho hlavní funkcí je „Replace all words you in your current page to anything you want!“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Word Replace And Load
Stáhněte si soubory rozšíření Word Replace And Load ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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!
Základní Informace o Rozšíření
Název | |
ID | pbjnbneghgdchjkbeiifmfigjcgbefoi |
Oficiální URL | https://chrome.google.com/webstore/detail/word-replace-and-load/pbjnbneghgdchjkbeiifmfigjcgbefoi |
Popis | Replace all words you in your current page to anything you want! |
Velikost souboru | 18.75 KB |
Počet instalací | 3,635 |
Aktuální Verze | 1 |
Poslední Aktualizace | 2022-12-26 |
Datum Vydání | 2022-12-26 |
Hodnocení | 1.00/5 Celkem 1 Hodnocení |
Vývojář | jerryblum.ideas |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://home.wallationdistry.xyz/ |
URL Stránky Nápovědy | https://home.wallationdistry.xyz/contact.html |
Podporované Jazyky | 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" ] } ] } |