Hammer

Replace the trigger words with other words or star signs

Vad är Hammer?

Hammer är en Chrome-tillägg utvecklad av zhy, och dess huvudfunktion är "Replace the trigger words with other words or star signs".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Hammer-förlängningens CRX-fil

Ladda ner Hammer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Hammer Hammer
ID cgcndfhnodpingjaaofffpkblamjfojp
Officiell webbadress https://chromewebstore.google.com/detail/hammer/cgcndfhnodpingjaaofffpkblamjfojp
Beskrivning Replace the trigger words with other words or star signs
Filstorlek 332 KB
Antal Installationer 237
Aktuell Version 0.0.7
Senast Uppdaterad 2021-07-14
Publiceringsdatum 2021-04-30
Betyg 4.75/5 Totalt 8 Betyg
Utvecklare zhy
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    ]
}