KISS Translator

A simple bilingual translation extension & Greasemonkey script

KISS Translator क्या है?

KISS Translator FishJar द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A simple bilingual translation extension & Greasemonkey script"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में KISS Translator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
    }
}