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!"입니다.

확장 프로그램 스크린샷

screenshot

Word Replace And Load 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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!                    

확장 프로그램 기본 정보

이름 Word Replace And Load Word Replace And Load
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"
            ]
        }
    ]
}