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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        }
    }
}