Word Replace And Load
Replace all words you in your current page to anything you want!
什麼是Word Replace And Load?
Word Replace And Load是由jerryblum.ideas開發的Chrome擴展程式,該擴展的主要功能是“Replace all words you in your current page to anything you want!”。
擴展截圖
下載Word Replace And Load擴展crx文件
下載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 |
官方網址 | 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" ] } ] } |