Hammer

Replace the trigger words with other words or star signs

Wat is Hammer?

Hammer is een Chrome-extensie ontwikkeld door zhy, en de belangrijkste functie is "Replace the trigger words with other words or star signs".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Hammer

Download Hammer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Hammer Hammer
ID cgcndfhnodpingjaaofffpkblamjfojp
Officiële URL https://chromewebstore.google.com/detail/hammer/cgcndfhnodpingjaaofffpkblamjfojp
Beschrijving Replace the trigger words with other words or star signs
Bestandsgrootte 332 KB
Aantal Installaties 237
Huidige Versie 0.0.7
Laatst Bijgewerkt 2021-07-14
Publicatiedatum 2021-04-30
Beoordeling 4.75/5 Totaal 8 Beoordelingen
Ontwikkelaar zhy
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    ]
}