Website text content replacer

Lets you change some content (words, phrases etc) on a website to more familiar or enjoyable ones.

什么是Website text content replacer?

Website text content replacer是由victooor开发的Chrome扩展程序,该扩展的主要功能是“Lets you change some content (words, phrases etc) on a website to more familiar or enjoyable ones.”。

扩展截图

screenshot
screenshot
screenshot

下载Website text content replacer扩展crx文件

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

扩展使用说明

                        This extension lets you change some content (words, phrases etc.) to more familiar or enjoyable ones. 

How does it work: 

You define a website on which you want the content to be changed and the actual content to be replaced. When the url is matching, the text replacement will take place. 

To set up replacement values after you installed "Website text content replacer":
1) type chrome://extensions in the address bar
2) click on extensions "Details" button
3) click on "Extension options"

Remember to save your replacement values

If you find bugs please create issues here: https://github.com/victooor/HtmlTextContentReplacer

You are more than welcome to contribute :)                    

扩展基本信息

名称 Website text content replacer Website text content replacer
ID fmbchninojmfdlimbakaohgodgjpihcc
官方URL https://chromewebstore.google.com/detail/website-text-content-repl/fmbchninojmfdlimbakaohgodgjpihcc
简介 Lets you change some content (words, phrases etc) on a website to more familiar or enjoyable ones.
文件大小 156 KB
安装次数 727
当前版本 1.0.2
更新时间 2020-01-13
上架时间 2020-01-13
评分 4.00/5 共11次评分
开发者 victooor
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Website text content replacer",
    "description": "Lets you change some content (words, phrases etc) on a website to more familiar or enjoyable ones.",
    "version": "1.0.2",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "options_page": "index.html#\/options",
    "browser_action": {
        "default_title": "Open Popup!",
        "default_popup": "index.html#\/popup"
    },
    "icons": {
        "16": "assets\/images\/html16.png",
        "32": "assets\/images\/html32.png",
        "48": "assets\/images\/html48.png",
        "128": "assets\/images\/html128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "executer.js"
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}