Open in Yandex browser

Open current page, link, or all tabs in the Yandex browser.

Open in Yandex browserคืออะไร?

Open in Yandex browser เป็นส่วนขยายของ Chrome ที่พัฒนาโดย rynu.smith และคุณลักษณะหลักของมันคือ "Open current page, link, or all tabs in the Yandex browser."

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

screenshot

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

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

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

                        This extension opens the current tab or links in the Yandex browser. Using this extension you can send links to Yandex without the need to manually copy and paste links.

If a Yandex instance is opened, then link is opened in a new browser tab, however, if Yandex is not opened, a new window is opened.

For FAQs please visit:
https://add0n.com/open-in.html?from=yandex

For bug reports visit:
https://github.com/andy-portmen/native-client/

Notes:
1. For this extension to open links in the Yandex browser you will need to install a minimal native client. The instruction to install the native client is displayed once a link opening is requested.
2. This extension supports managed storage which means some preferences can be configured by the domain administrator
3. This extension can send links on left-click, a combination of the left-click and a keyboard meta key, and top-level navigation

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

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

ชื่อ Open in Yandex browser Open in Yandex browser
ID nfpgfobeckckemhmggkdfjkjaiikadnd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/open-in-yandex-browser/nfpgfobeckckemhmggkdfjkjaiikadnd
คำอธิบาย Open current page, link, or all tabs in the Yandex browser.
ขนาดไฟล์ 132 KB
จำนวนการติดตั้ง 3,912
เวอร์ชันปัจจุบัน 0.1.6
อัปเดตครั้งล่าสุด 2020-12-02
วันที่เผยแพร่ 2020-01-25
คะแนน 4.20/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา rynu.smith
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://add0n.com/open-in.html?from=yandex
URL หน้าช่วยเหลือ https://add0n.com/open-in.html?from=yandex
URL หน้านโยบายความเป็นส่วนตัว https://add0n.com/policies/rynu.smith.txt
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Open in Yandex browser",
    "description": "Open current page, link, or all tabs in the Yandex browser.",
    "version": "0.1.6",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "tabs",
        "contextMenus",
        "nativeMessaging"
    ],
    "optional_permissions": [
        "downloads"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "config.js",
            "common.js"
        ]
    },
    "storage": {
        "managed_schema": "schema.json"
    },
    "homepage_url": "https:\/\/add0n.com\/open-in.html?from=yandex",
    "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"
    },
    "browser_action": [],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "data\/inject.js"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "options_ui": {
        "page": "data\/options\/index.html",
        "chrome_style": true,
        "open_in_tab": true
    }
}