Word Changer
Have fun replacing all instances of one word with another on pages you visit.
Word Changer란 무엇입니까?
Word Changer은(는) skulegirlanna에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Have fun replacing all instances of one word with another on pages you visit."입니다.
확장 프로그램 스크린샷
Word Changer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension lets you change a word of your choosing with a different one on websites that you're viewing. For instance, you can change "Bill Gates" to "Shrek" on his Wikipedia page! What fun! Configure the search and replace words in the extension. Then click on the extension in your browser while on a page where you want to do the word changing, and voila! Note that this is actually written by my 8 & 10 year old sons, who think this is the best way to learn how to program.
확장 프로그램 기본 정보
이름 | Word Changer |
ID | jjaeodeafkbbimejiboehejbdgpebjcd |
공식 URL | https://chromewebstore.google.com/detail/word-changer/jjaeodeafkbbimejiboehejbdgpebjcd |
설명 | Have fun replacing all instances of one word with another on pages you visit. |
파일 크기 | 12.41 KB |
설치 횟수 | 1,361 |
현재 버전 | 0.2 |
최근 업데이트 | 2021-03-08 |
출시 날짜 | 2020-02-19 |
평점 | 2.43/5 총 14 개의 평점 |
개발자 | skulegirlanna |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Word Changer", "description": "Have fun replacing all instances of one word with another on pages you visit.", "version": "0.2", "permissions": [ "storage", "activeTab" ], "options_ui": { "page": "options.html", "open_in_tab": false }, "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_title": "Run WordChanger!" }, "icons": { "16": "Icon16.png", "48": "Icon48.png", "128": "Icon128.png" } } |