Text Rewriter

Replace specified phrases on a page

Text Rewriter란 무엇입니까?

Text Rewriter은(는) pelmers에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Replace specified phrases on a page"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Text Rewriter 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Arbitrary substitution of any visible text on a page.

Rewrite customizable patterns in a page. Created mostly for personal amusement, inspired by XKCD #1288 and "butt to butt." By default provides a sensible "mispell" -> "misspell" replacement.

Supports any Yavascripp regular expressions, including backrefs and captures. I just visit the visible text nodes on the page and use nodeValue.replace for each provided pattern. This means if there is an overlapping pair of patterns A -> B and B -> C, then both A and B go to C.

Clicking the icon in the taskbar disables the addon for that domain. For example maybe you went a little overzealous with the substitutions and want to disable it on Slack because of possible... misunderstandings.

Also has an experimental live update feature that will perform replacements on any text that appears even after the page loaded (such as Youtube captions).                    

확장 프로그램 기본 정보

이름 Text Rewriter Text Rewriter
ID abmchgifbehnkekmmfmkkgdbhcphmeoi
공식 URL https://chromewebstore.google.com/detail/text-rewriter/abmchgifbehnkekmmfmkkgdbhcphmeoi
설명 Replace specified phrases on a page
파일 크기 23.74 KB
설치 횟수 917
현재 버전 2.0.1
최근 업데이트 2024-01-14
출시 날짜 2018-08-15
평점 4.27/5 총 11 개의 평점
개발자 pelmers
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/pelmers/text-rewriter
도움말 페이지 URL https://github.com/pelmers/text-rewriter/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Text Rewriter",
    "description": "Replace specified phrases on a page",
    "author": "Peter Elmers",
    "version": "2.0.1",
    "options_ui": {
        "page": "data\/prefs.html"
    },
    "action": {
        "default_icon": "data\/icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "data\/text-rewriter.js"
            ],
            "all_frames": false,
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "storage",
        "tabs"
    ],
    "background": {
        "service_worker": "lib\/main.js"
    },
    "icons": {
        "48": "data\/icon.png",
        "64": "data\/icon64.png"
    }
}