Text Customizer

Customize your internet with text replacement strategies.

Text Customizer란 무엇입니까?

Text Customizer은(는) Whisno에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Customize your internet with text replacement strategies."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        This extension runs through webpages, applying your find and replace rules. You can define rules in the extension's options page. They simply consist in :

- Match : either a string or a regular expression
- Replacement : either a string or a function that receives arguments (node, match), where 'node' is the DOM node in which there was a match and 'match' the result array (as returned by RegExp.prototype.exec())

So you can simply find/replace strings ('keyboard' -> 'leopard' for instance) or take it to another level and use custom functions to apply CSS to substrings, move them through the DOM and so forth.

You can configure the extension through the extensions page (chrome://extensions/)                    

확장 프로그램 기본 정보

이름 Text Customizer Text Customizer
ID kjcahcohoafkpcehokeficpobcplpnhc
공식 URL https://chromewebstore.google.com/detail/text-customizer/kjcahcohoafkpcehokeficpobcplpnhc
설명 Customize your internet with text replacement strategies.
파일 크기 171 KB
설치 횟수 810
현재 버전 1.0
최근 업데이트 2015-01-17
출시 날짜 2015-01-17
평점 4.10/5 총 10 개의 평점
개발자 Whisno
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Whisno/Chrome-Text-Customizer
도움말 페이지 URL https://github.com/Whisno/Chrome-Text-Customizer/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Text Customizer",
    "version": "1.0",
    "description": "Customize your internet with text replacement strategies.",
    "icons": {
        "128": "assets\/icon-128.png",
        "48": "assets\/icon-48.png",
        "24": "assets\/icon-24.png"
    },
    "homepage_url": "https:\/\/github.com\/Whisno\/Chrome-Text-Customizer",
    "content_scripts": [
        {
            "js": [
                "text_customizer.js",
                "main.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "options_page": "options.html",
    "permissions": [
        "storage"
    ]
}