Lingo!

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

Lingo! là gì?

Lingo! là một tiện ích mở rộng Chrome được phát triển bởi Bryce Corbitt, và tính năng chính của nó là "For an internet that speaks YOUR language 😎. Substitute words or phrases for your browsing pleasure.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Lingo!

Tải xuống các tệp mở rộng Lingo! dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Lingo! Lingo!
ID ncjojbnfimdhjebeoolcihfjedhnbjlh
URL Chính Thức https://chromewebstore.google.com/detail/lingo/ncjojbnfimdhjebeoolcihfjedhnbjlh
Mô tả For an internet that speaks YOUR language 😎. Substitute words or phrases for your browsing pleasure.
Kích Thước Tệp 37.77 KB
Số Lần Cài Đặt 41
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2021-07-27
Ngày Phát Hành 2021-07-27
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Bryce Corbitt
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/brycecorbitt/Lingo
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}