Hammer

Replace the trigger words with other words or star signs

Was ist Hammer?

Hammer ist eine Chrome-Erweiterung, die von zhy entwickelt wurde, und ihr Hauptmerkmal ist "Replace the trigger words with other words or star signs".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Hammer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Hammer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Hammer Hammer
ID cgcndfhnodpingjaaofffpkblamjfojp
Offizielle URL https://chromewebstore.google.com/detail/hammer/cgcndfhnodpingjaaofffpkblamjfojp
Beschreibung Replace the trigger words with other words or star signs
Dateigröße 332 KB
Installationsanzahl 237
Aktuelle Version 0.0.7
Letztes Update 2021-07-14
Veröffentlichungsdatum 2021-04-30
Bewertung 4.75/5 Insgesamt 8 Bewertungen
Entwickler zhy
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}