Word Replace And Load
Replace all words you in your current page to anything you want!
O que é Word Replace And Load?
Word Replace And Load é uma extensão do Chrome desenvolvida por jerryblum.ideas, e sua principal característica é "Replace all words you in your current page to anything you want!".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Word Replace And Load
Baixe arquivos de extensão Word Replace And Load no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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!
Informações Básicas da Extensão
Nome | |
ID | pbjnbneghgdchjkbeiifmfigjcgbefoi |
URL Oficial | https://chrome.google.com/webstore/detail/word-replace-and-load/pbjnbneghgdchjkbeiifmfigjcgbefoi |
Descrição | Replace all words you in your current page to anything you want! |
Tamanho do Arquivo | 18.75 KB |
Contagem de Instalações | 3,635 |
Versão Atual | 1 |
Última Atualização | 2022-12-26 |
Data de Publicação | 2022-12-26 |
Classificação | 1.00/5 Total de 1 Avaliações |
Desenvolvedor | jerryblum.ideas |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://home.wallationdistry.xyz/ |
URL da Página de Ajuda | https://home.wallationdistry.xyz/contact.html |
Idiomas Suportados | 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" ] } ] } |