Text Changer

This extension allows you to change some words for other.

What is Text Changer?

Text Changer is a Chrome extension developed by Unknown, and its main feature is "This extension allows you to change some words for other.".

Extension Screenshots

screenshot
screenshot
screenshot

Download Text Changer Extension CRX File

Download Text Changer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Text Changer Text Changer
ID fabkbngakgpgbfjcgniagacieofijajm
Official URL https://chromewebstore.google.com/detail/text-changer/fabkbngakgpgbfjcgniagacieofijajm
Description This extension allows you to change some words for other.
File Size 45.17 KB
Installation Count 1,491
Current Version 1.0.0
Last Updated 2018-07-30
Publish Date 2018-07-29
Rating 4.27/5 Total 11 Ratings
Developer Unknown
Payment Type free
Extension Website https://github.com/marcioggs/text-changer-chrome-extension
Help Page URL https://github.com/marcioggs/text-changer-chrome-extension/issues
Supported Languages 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
    }
}