Open in Chromium Browser

Open the current tab or all tabs in Chromium browser or send links to Chromium from right-click context menu.

Open in Chromium Browser là gì?

Open in Chromium Browser là một tiện ích mở rộng Chrome được phát triển bởi lunu.bounir, và tính năng chính của nó là "Open the current tab or all tabs in Chromium browser or send links to Chromium from right-click context menu.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Open in Chromium Browser

Tải xuống các tệp mở rộng Open in Chromium Browser dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Open in Chromium extension opens the current tab or all tabs in Google's Chromium browser. This is useful to transfer links across browsers without manual copy and paste.

Notes:
1. In case a Chromium window is opened, the link is opened in a new browser tab
2. If Chromium is not opened, a new Chromium window gets opened.
3. To open links in the Chromium browser, you will need to install a native client. 
4. The instruction to install the native client is displayed once a link opening is requested. 
5. At this point, the native client supports the following operating systems:
  a. Windows
  b. Mac
  c. Linux
6. The native client does NOT support Chromium OS.
7. On Windows and Linux, you need to set the Chromium path on the options page for the extension to find the Chromium browser
8. Some preferences  of this extension can be configured by the domain administrator (managed storage)
9. This extension can send links on left-click, a combination of the left-click and a keyboard meta key, and top-level navigation

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Open in Chromium Browser Open in Chromium Browser
ID bhfenhhfpcpkknkahnlogooiodcofkjl
URL Chính Thức https://chromewebstore.google.com/detail/open-in-chromium-browser/bhfenhhfpcpkknkahnlogooiodcofkjl
Mô tả Open the current tab or all tabs in Chromium browser or send links to Chromium from right-click context menu.
Kích Thước Tệp 115 KB
Số Lần Cài Đặt 6,752
Phiên Bản Hiện Tại 0.2.2
Cập Nhật Lần Cuối 2023-09-25
Ngày Phát Hành 2020-01-08
Đánh Giá 4.15/5 Tổng số 13 Đánh Giá
Nhà Phát Triển lunu.bounir
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://webextension.org/listing/open-in.html?from=chromium
URL Trang Trợ Giúp https://webextension.org/listing/open-in.html?from=chromium
URL Trang Chính Sách Bảo Mật https://add0n.com/policies/lunu.bounir.txt
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Open in Chromium Browser",
    "description": "Open the current tab or all tabs in Chromium browser or send links to Chromium from right-click context menu.",
    "version": "0.2.2",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "tabs",
        "contextMenus",
        "nativeMessaging"
    ],
    "optional_permissions": [
        "downloads"
    ],
    "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"
    },
    "background": {
        "service_worker": "worker.js"
    },
    "storage": {
        "managed_schema": "schema.json"
    },
    "homepage_url": "https:\/\/webextension.org\/listing\/open-in.html?from=chromium",
    "action": [],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "\/data\/script\/isolated.js"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "match_about_blank": true,
            "world": "ISOLATED"
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "\/data\/script\/main.js"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "match_about_blank": true,
            "world": "MAIN"
        }
    ],
    "options_ui": {
        "page": "\/data\/options\/index.html",
        "open_in_tab": true
    },
    "commands": {
        "_execute_action": []
    }
}