Bilingual Reader

Split screen and read translated content side by side

Bilingual Readerคืออะไร?

Bilingual Reader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย medalhuang และคุณลักษณะหลักของมันคือ "Split screen and read translated content side by side"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Bilingual Reader

ดาวน์โหลดไฟล์ส่วนขยาย Bilingual Reader ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        version 1.1.1: bugfix for translate API error;

---
Bilingual Reader is a browser extension designed to enhance your reading experience by providing side-by-side translations of web articles. It helps users easily read and compare original text with translated content.

##Features

* One-Click Split-Screen Translation: Translate web articles with a single click, displaying the original and translated content side by side for easy comparison.
* Focused Translation: The extension only translates the main content of a web page, providing a more focused and enjoyable reading experience.
* Synchronized Scrolling and Text Highlighting: As you scroll through the original text, the translated content scrolls automatically. Selecting a paragraph in the original text highlights the corresponding translated paragraph.
* Adjustable Font Size: Easily modify the font size in the reader to suit your reading preferences.
* Customizable Settings: Set your default font and target language for translations, streamlining your user experience.

## Installation

1. Visit the Chrome Web Store or the browser's extension store and search for "Bilingual Reader".
2. Click the "Add to Chrome" button (or the equivalent for your browser) to install the extension.

## Usage

1. Navigate to the web article you want to translate.
2. (Optional) Pin the Bilingual Reader icon to your toolbar to make your experience more great!
3. Click the Bilingual Reader icon in your browser toolbar to activate the split-screen translation.
4. (Optional) Adjust the font size, default font, and target language in the extension settings, if desired.
5. Enjoy an enhanced reading experience with side-by-side translations!

## Support

If you find any websites having layout/ui/translation issues when using Bilingual Reader, please [create an issue](https://github.com/zamia/bilingual-reader/issues) in our GitHub repository.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Bilingual Reader Bilingual Reader
ID ecbgnkobdpgmofceoljghglggimcckab
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/bilingual-reader/ecbgnkobdpgmofceoljghglggimcckab
คำอธิบาย Split screen and read translated content side by side
ขนาดไฟล์ 1.16 MB
จำนวนการติดตั้ง 260
เวอร์ชันปัจจุบัน 1.1.1
อัปเดตครั้งล่าสุด 2023-11-22
วันที่เผยแพร่ 2023-04-11
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา medalhuang
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/zamia/bilingual-reader
URL หน้าช่วยเหลือ https://github.com/zamia/bilingual-reader/issues
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Bilingual Reader",
    "description": "Split screen and read translated content side by side",
    "version": "1.1.1",
    "icons": {
        "16": "icons\/simple-icon-16.png",
        "32": "icons\/simple-icon-32.png",
        "48": "icons\/simple-icon-48.png",
        "128": "icons\/simple-icon-128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/*.svg",
                "icons\/*.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "icons\/simple-icon-16.png",
            "32": "icons\/simple-icon-32.png",
            "48": "icons\/simple-icon-48.png",
            "128": "icons\/simple-icon-128.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_idle",
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+B",
                "mac": "Command+B"
            }
        }
    }
}