Replacer

Replace or hide the words on the internet

Replacer란 무엇입니까?

Replacer은(는) https://replacer.app에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Replace or hide the words on the internet"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Internet is full of slurs or other disappointing content. Replacer lets you hide or replace some words or phrases with more comfortable for you. Or you can just have fun. Let's make the web friendlier!                    

확장 프로그램 기본 정보

이름 Replacer Replacer
ID cnaegfealmimnhmjhieeokofoeddejjk
공식 URL https://chromewebstore.google.com/detail/replacer/cnaegfealmimnhmjhieeokofoeddejjk
설명 Replace or hide the words on the internet
파일 크기 44.17 KB
설치 횟수 233
현재 버전 1.0.0
최근 업데이트 2022-04-05
출시 날짜 2022-04-02
평점 4.00/5 총 2 개의 평점
개발자 https://replacer.app
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://replacer.app/
개인정보 보호 정책 페이지 URL https://darkreader.org/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Replacer",
    "version": "1.0.0",
    "author": "Alexander Shutau",
    "description": "__MSG_extension_description__",
    "default_locale": "en",
    "action": {
        "default_title": "Replacer",
        "default_popup": "popup\/index.html",
        "default_icon": {
            "38": "icons\/icon-38x38.png",
            "19": "icons\/icon-19x19.png"
        }
    },
    "icons": {
        "16": "icons\/icon-16x16.png",
        "48": "icons\/icon-48x48.png",
        "128": "icons\/icon-128x128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "replacer.js"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "permissions": [
        "scripting",
        "storage",
        "tabs",
        "unlimitedStorage"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "commands": {
        "toggle_extension": {
            "description": "__MSG_toggle_extension__"
        },
        "toggle_website": {
            "description": "__MSG_toggle_website__"
        }
    }
}