Text Changer

This extension allows you to change some words for other.

什么是Text Changer?

Text Changer是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“This extension allows you to change some words for other.”。

扩展截图

screenshot
screenshot
screenshot

下载Text Changer扩展crx文件

下载Text Changer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Text Changer Text Changer
ID fabkbngakgpgbfjcgniagacieofijajm
官方URL https://chromewebstore.google.com/detail/text-changer/fabkbngakgpgbfjcgniagacieofijajm
简介 This extension allows you to change some words for other.
文件大小 45.17 KB
安装次数 1,491
当前版本 1.0.0
更新时间 2018-07-30
上架时间 2018-07-29
评分 4.27/5 共11次评分
开发者 Unknown
付费类型 free
扩展官网 https://github.com/marcioggs/text-changer-chrome-extension
帮助页面URL https://github.com/marcioggs/text-changer-chrome-extension/issues
支持的语言 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
    }
}