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文件

下載Hammer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    ]
}