Graphic Novel Screen Translator

An easy to use extension for translating any text on the webpage to English

Graphic Novel Screen Translatorคืออะไร?

Graphic Novel Screen Translator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Colin M และคุณลักษณะหลักของมันคือ "An easy to use extension for translating any text on the webpage to English"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Graphic Novel Screen Translator

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

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

                        Description:
    Graphic Novel Screen Translator is a powerful Chrome extension that brings the convenience of on-the-fly language translation to your web browsing experience. With Graphic Novel Screen Translator, you can effortlessly draw an area containing text from any webpage and translate in the same location using just your mouse.

Key Features:
1.	Mouse-Driven Translation: Simply highlight any text on a webpage using your mouse, and Graphic Novel Screen Translator will instantly capture it for translation.
2.	Multiple Languages Supported: Graphic Novel Screen Translator supports a wide range of languages, allowing you to translate text from various sources into English for easy understanding.
3.	Seamless Integration: Our extension seamlessly integrates into your Chrome browser, providing an intuitive and hassle-free translation experience.
4.	Capture and Display: Graphic Novel Screen Translator not only translates text but also captures a screenshot of the selected area on the webpage. The translated text is then superimposed onto the captured image, making it easy to comprehend in context.
5.	Customization Options: Tailor Graphic Novel Screen Translator to your preferences with customizable settings for translation services, appearance, and more.

How to Use:
1.	Install Graphic Novel Screen Translator from the Chrome Web Store.
2.	Click on the extension icon in your browser to activate it.
3.	Draw a box containing the text you want to translate using your mouse.
4.	The translated text will appear superimposed on the captured image, providing context and clarity.

Graphic Novel Screen Translator is your go-to tool for breaking down language barriers while surfing the web. Whether you're reading articles, browsing foreign websites, or communicating with global audiences, this extension empowers you to access information in your preferred language.

Say goodbye to language obstacles and make the most out of your web exploration with Graphic Novel Screen Translator. Try it today and experience a more connected and informative online world.                    

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

ชื่อ Graphic Novel Screen Translator Graphic Novel Screen Translator
ID oeabombpchmgliinmbafablopaflmpbi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/graphic-novel-screen-tran/oeabombpchmgliinmbafablopaflmpbi
คำอธิบาย An easy to use extension for translating any text on the webpage to English
ขนาดไฟล์ 59.42 KB
จำนวนการติดตั้ง 169
เวอร์ชันปัจจุบัน 2.0
อัปเดตครั้งล่าสุด 2023-11-01
วันที่เผยแพร่ 2023-10-15
ผู้พัฒนา Colin M
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Graphic Novel Screen Translator",
    "description": "An easy to use extension for translating any text on the webpage to English",
    "version": "2.0",
    "icons": {
        "16": "images\/icon.png",
        "32": "images\/icon.png",
        "48": "images\/icon.png",
        "128": "images\/icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content-custom-area.js"
            ],
            "css": [
                "content-custom-area.css"
            ]
        },
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content-full-page.js"
            ],
            "css": [
                "content-full-page.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "use_dynamic_url": true
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self';"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": "images\/icon.png",
        "default_popup": "popup.html"
    },
    "host_permissions": [
        "https:\/\/*\/*"
    ],
    "permissions": [
        "activeTab",
        "tabs"
    ]
}