Lingo!

For an internet that speaks YOUR language 😎. Substitute words or phrases for your browsing pleasure.

什么是Lingo!?

Lingo!是由Bryce Corbitt开发的Chrome扩展程序,该扩展的主要功能是“For an internet that speaks YOUR language 😎. Substitute words or phrases for your browsing pleasure.”。

扩展截图

screenshot

下载Lingo!扩展crx文件

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

扩展使用说明

                        Lingo is an extension that replaces text in-browser using rules that you define.

Features:
- Toggle to enable/disable word replacement
- Define rules for replacing any text in your browser
- Works on dynamically loaded text (chats, live feeds)
- Ability to import/export rule configurations

What makes Lingo Special?
- Light-weight: Not a single third party library in use
- Works entirely in extension window: See your rules applied to the current page as you add/tweak them
- Open Source: Accessible to you at https://github.com/brycecorbitt/Lingo and always will be                    

扩展基本信息

名称 Lingo! Lingo!
ID ncjojbnfimdhjebeoolcihfjedhnbjlh
官方URL https://chromewebstore.google.com/detail/lingo/ncjojbnfimdhjebeoolcihfjedhnbjlh
简介 For an internet that speaks YOUR language 😎. Substitute words or phrases for your browsing pleasure.
文件大小 37.77 KB
安装次数 41
当前版本 1.0.1
更新时间 2021-07-27
上架时间 2021-07-27
评分 5.00/5 共1次评分
开发者 Bryce Corbitt
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/brycecorbitt/Lingo
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Lingo!",
    "description": "For an internet that speaks YOUR language \ud83d\ude0e. Substitute words or phrases for your browsing pleasure.",
    "version": "1.0.1",
    "manifest_version": 3,
    "author": "Bryce Corbitt",
    "content_scripts": [
        {
            "js": [
                "loader.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "lingo_rule.js",
                "lingo.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "index.html",
        "default_icon": {
            "16": "\/images\/lingo_16.png",
            "32": "\/images\/lingo_32.png",
            "48": "\/images\/lingo_48.png",
            "128": "\/images\/lingo_128.png"
        }
    }
}