KISS Translator

A simple bilingual translation extension & Greasemonkey script

KISS Translator란 무엇입니까?

KISS Translator은(는) FishJar에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A simple bilingual translation extension & Greasemonkey script"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

KISS Translator 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        ## Homepage

https://github.com/fishjar/kiss-translator

## Features

- [x] Keep it simple, smart
- [x] Open source
- [x] Adapt to common browsers
  - [x] Chrome/Edge/Firefox/Kiwi
  - [ ] Safari
- [x] Supports multiple translation services
  - [x] Custom translation interface
- [x] Covers common translation scenarios
  - [x] Web bilingual translation
  - [x] Input box translation
  - [x] Seletction translation
    - [x] Favorite Words
  - [x] Mouseover translation
  - [x] YouTube subtitle translation
- [x] Cross-client data synchronization
  - [x] KISS-Worker(cloudflare/docker)
  - [x] WebDAV
- [x] Custom translation rules
  - [x] Rule subscription/rule sharing
- [x] Custom translation style
- [x] Custom shortcut keys
  - `Alt+Q` Toggle Translation
  - `Alt+C` Toggle Styles
  - `Alt+K` Open Setting Popup
  - `Alt+S` Open Translate Popup / Translate Selected Text
  - `Alt+O` Open Options Page
  - `Alt+I` Input Box Translation                    

확장 프로그램 기본 정보

이름 KISS Translator KISS Translator
ID bdiifdefkgmcblbcghdlonllpjhhjgof
공식 URL https://chromewebstore.google.com/detail/kiss-translator/bdiifdefkgmcblbcghdlonllpjhhjgof
설명 A simple bilingual translation extension & Greasemonkey script
파일 크기 685 KB
설치 횟수 3,279
현재 버전 1.8.3
최근 업데이트 2024-02-26
출시 날짜 2023-08-13
평점 4.79/5 총 14 개의 평점
개발자 FishJar
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/fishjar/kiss-translator
도움말 페이지 URL https://github.com/fishjar/kiss-translator/issues
지원되는 언어 en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_app_name__",
    "description": "__MSG_app_description__",
    "version": "1.8.3",
    "default_locale": "en",
    "author": "Gabe",
    "homepage_url": "https:\/\/github.com\/fishjar\/kiss-translator",
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ],
            "all_frames": true
        }
    ],
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Alt+K"
            }
        },
        "toggleTranslate": {
            "suggested_key": {
                "default": "Alt+Q"
            },
            "description": "__MSG_toggle_translate__"
        },
        "openTranbox": {
            "suggested_key": {
                "default": "Alt+S"
            },
            "description": "__MSG_open_tranbox__"
        },
        "toggleStyle": {
            "suggested_key": {
                "default": "Alt+C"
            },
            "description": "__MSG_toggle_style__"
        },
        "openOptions": {
            "description": "__MSG_open_options__"
        }
    },
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "host_permissions": [
        ""
    ],
    "icons": {
        "16": "images\/logo16.png",
        "32": "images\/logo32.png",
        "48": "images\/logo48.png",
        "128": "images\/logo128.png"
    },
    "action": {
        "default_icon": {
            "128": "images\/logo128.png"
        },
        "default_title": "__MSG_app_name__",
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    }
}