Text Changer

This extension allows you to change some words for other.

Co je Text Changer?

Text Changer je rozšíření Chrome vyvinuté Unknown, a jeho hlavní funkcí je „This extension allows you to change some words for other.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Text Changer

Stáhněte si soubory rozšíření Text Changer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        This Chrome extension lets you change text on pages that you navigate.

Features:
- Add multiple words;
- Badge shows the ammount of text changed;
- Disable badge;
- Updates text efficiently when the DOM is changed.                    

Základní Informace o Rozšíření

Název Text Changer Text Changer
ID fabkbngakgpgbfjcgniagacieofijajm
Oficiální URL https://chromewebstore.google.com/detail/text-changer/fabkbngakgpgbfjcgniagacieofijajm
Popis This extension allows you to change some words for other.
Velikost souboru 45.17 KB
Počet instalací 1,491
Aktuální Verze 1.0.0
Poslední Aktualizace 2018-07-30
Datum Vydání 2018-07-29
Hodnocení 4.27/5 Celkem 11 Hodnocení
Vývojář Unknown
Typ Platby free
Webové stránky Rozšíření https://github.com/marcioggs/text-changer-chrome-extension
URL Stránky Nápovědy https://github.com/marcioggs/text-changer-chrome-extension/issues
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Text Changer",
    "version": "1.0.0",
    "description": "This extension allows you to change some words for other.",
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "author": "M\u00e1rcio Gabriel",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "scripts\/changeText.js"
            ]
        }
    ],
    "options_page": "pages\/options.html",
    "homepage_url": "https:\/\/github.com\/marcioggs\/text-changer-chrome-extension",
    "permissions": [
        "storage"
    ],
    "browser_action": [],
    "background": {
        "scripts": [
            "scripts\/onInstalled.js",
            "scripts\/badge.js"
        ],
        "persistent": false
    }
}