Hammer

Replace the trigger words with other words or star signs

Hammer란 무엇입니까?

Hammer은(는) zhy에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Replace the trigger words with other words or star signs"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        One tool to automatically replace the trigger words with other words or star signs.
 It's simple to use.

1. The page to manage dictionaries will be open after installed, add trigger words into it.
2. Open any site, trigger words on it has been replaced with words set by you.

Source code : https://github.com/sheepzh/regulation                    

확장 프로그램 기본 정보

이름 Hammer Hammer
ID cgcndfhnodpingjaaofffpkblamjfojp
공식 URL https://chromewebstore.google.com/detail/hammer/cgcndfhnodpingjaaofffpkblamjfojp
설명 Replace the trigger words with other words or star signs
파일 크기 332 KB
설치 횟수 237
현재 버전 0.0.7
최근 업데이트 2021-07-14
출시 날짜 2021-04-30
평점 4.75/5 총 8 개의 평점
개발자 zhy
이메일 [email protected]
결제 유형 free
지원되는 언어 en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_app_name__",
    "description": "__MSG_app_description__",
    "version": "0.0.7",
    "author": "sheepzh",
    "default_locale": "en",
    "homepage_url": "https:\/\/github.com\/sheepzh\/regulation#readme",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "static\/images\/icon.png",
        "default_title": "__MSG_app_iconTitle__"
    },
    "icons": {
        "16": "static\/images\/icon.png",
        "48": "static\/images\/icon.png",
        "128": "static\/images\/icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_scripts.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "permissions": [
        "storage"
    ]
}