Website text content replacer
Lets you change some content (words, phrases etc) on a website to more familiar or enjoyable ones.
Website text content replacer란 무엇입니까?
Website text content replacer은(는) victooor에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Lets you change some content (words, phrases etc) on a website to more familiar or enjoyable ones."입니다.
확장 프로그램 스크린샷
Website text content replacer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension lets you change some content (words, phrases etc.) to more familiar or enjoyable ones. How does it work: You define a website on which you want the content to be changed and the actual content to be replaced. When the url is matching, the text replacement will take place. To set up replacement values after you installed "Website text content replacer": 1) type chrome://extensions in the address bar 2) click on extensions "Details" button 3) click on "Extension options" Remember to save your replacement values If you find bugs please create issues here: https://github.com/victooor/HtmlTextContentReplacer You are more than welcome to contribute :)
확장 프로그램 기본 정보
이름 | Website text content replacer |
ID | fmbchninojmfdlimbakaohgodgjpihcc |
공식 URL | https://chromewebstore.google.com/detail/website-text-content-repl/fmbchninojmfdlimbakaohgodgjpihcc |
설명 | Lets you change some content (words, phrases etc) on a website to more familiar or enjoyable ones. |
파일 크기 | 156 KB |
설치 횟수 | 727 |
현재 버전 | 1.0.2 |
최근 업데이트 | 2020-01-13 |
출시 날짜 | 2020-01-13 |
평점 | 4.00/5 총 11 개의 평점 |
개발자 | victooor |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Website text content replacer", "description": "Lets you change some content (words, phrases etc) on a website to more familiar or enjoyable ones.", "version": "1.0.2", "permissions": [ "activeTab", "storage" ], "options_page": "index.html#\/options", "browser_action": { "default_title": "Open Popup!", "default_popup": "index.html#\/popup" }, "icons": { "16": "assets\/images\/html16.png", "32": "assets\/images\/html32.png", "48": "assets\/images\/html48.png", "128": "assets\/images\/html128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "executer.js" ], "run_at": "document_end" } ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |