Open in Opera Browser

Automatically send links to the Opera browser from left or right-click without cluttering your Clipboard.

Open in Opera Browserคืออะไร?

Open in Opera Browser เป็นส่วนขยายของ Chrome ที่พัฒนาโดย yokris.dev และคุณลักษณะหลักของมันคือ "Automatically send links to the Opera browser from left or right-click without cluttering your Clipboard."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Open in Opera Browser

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

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

                        By using an open-source native client, this extension transfers links between your browse and Opera browser. The extension can configure to capture left-click over links and send configured hostnames to the Opera browser. This extension also provides a right-click context menu item to send links to the Opera browser without the need to copy the link to the system's clipboard first. Note that for this extension to send links, you need to install a small NodeJS-based native client. Without this native integration, the extension is not working. At this moment, the native-client only supports Windows, Linux, and Mac operating systems.

Features:
Send the current page to the Opera browser.
Send all tabs to the Opera browser.
Close a tab when the link is sent to the Opera browser.
Send tabs in the current window to the Opera browser.
Open Opera browser if no instance is present.
Add a new tab to the Opera browser if an instance is detected.
Support managed storage to configure the extension by a domain administrator instead of directly configuring each extension on a network.


--- Legal
Opera is a trademark of Opera Inc., registered in the U.S. and other countries. This extension is an independent project and has no relationship to the Opera team or Opera Inc.                    

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

ชื่อ Open in Opera Browser Open in Opera Browser
ID amojccmdnkdlcjcplmkijeenigbhfbpd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/open-in-opera-browser/amojccmdnkdlcjcplmkijeenigbhfbpd
คำอธิบาย Automatically send links to the Opera browser from left or right-click without cluttering your Clipboard.
ขนาดไฟล์ 58.27 KB
จำนวนการติดตั้ง 10,000
เวอร์ชันปัจจุบัน 0.3.3
อัปเดตครั้งล่าสุด 2023-10-09
วันที่เผยแพร่ 2020-02-11
คะแนน 3.96/5 รวมทั้งหมด 55 คะแนน
ผู้พัฒนา yokris.dev
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://webextension.org/listing/open-in.html?from=opera
URL หน้าช่วยเหลือ https://webextension.org/listing/open-in.html?from=opera
URL หน้านโยบายความเป็นส่วนตัว https://add0n.com/policies/yokris.dev.txt
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Open in Opera Browser",
    "description": "__MSG_description__",
    "default_locale": "en",
    "version": "0.3.3",
    "homepage_url": "https:\/\/webextension.org\/listing\/open-in.html?from=opera",
    "permissions": [
        "tabs",
        "contextMenus",
        "storage",
        "nativeMessaging"
    ],
    "optional_permissions": [
        "downloads"
    ],
    "background": {
        "service_worker": "worker.js"
    },
    "storage": {
        "managed_schema": "\/storage\/opera.json"
    },
    "icons": {
        "16": "\/data\/icons\/16.png",
        "32": "\/data\/icons\/32.png",
        "48": "\/data\/icons\/48.png",
        "64": "\/data\/icons\/64.png",
        "128": "\/data\/icons\/128.png",
        "256": "\/data\/icons\/256.png",
        "512": "\/data\/icons\/512.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "\/data\/inject\/main.js"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "match_about_blank": true,
            "world": "MAIN"
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "\/data\/inject\/isolated.js"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "match_about_blank": true,
            "world": "ISOLATED"
        }
    ],
    "action": [],
    "options_ui": {
        "page": "\/data\/options\/index.html",
        "open_in_tab": true
    },
    "commands": {
        "_execute_action": []
    }
}