Open in Firefox

Open current page, link, or all tabs in the Firefox browser with a left-click or through right-click context menu.

Open in Firefoxคืออะไร?

Open in Firefox เป็นส่วนขยายของ Chrome ที่พัฒนาโดย yokris.dev และคุณลักษณะหลักของมันคือ "Open current page, link, or all tabs in the Firefox browser with a left-click or through right-click context menu."

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

screenshot

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

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

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

                        The "Open in Firefox" extension simplifies opening the current tab or links within the current tab in the Firefox browser. This functionality can be initiated via the right-click context menu, a toolbar button, or left-clicking on a link with or without a modifier key. This extension streamlines link transfer between different web browsers, eliminating the need to copy a link from one browser, paste it into the OS clipboard, and then paste it into another browser.

Key Features:
- Open a website's hostname directly in Firefox.
- Open a specific URL in Firefox.
- Launch all URLs containing a specific keyword in Firefox.
- Optionally close the current tab after transferring a link.
- Optionally, do not block the left-click action when transferring a link.
- Support for managed storage, allowing administrators to configure extension settings.
- Support for user-defined JS script to decide whether the link should be blocked and passed to the Firefox browser or not

When the extension detects an open instance of the Firefox browser, it opens the link in a new browser tab. If no open Firefox instance is found, it initiates a new Firefox window.

You can customize URLs or hostnames to be automatically redirected to Firefox from the options page. You also have the option to close the source tab once the link transfer is completed. This allows you to view a specific website in Firefox, even if Chrome is your primary browser.

Important Notes:
1. To use this extension to open links in the Firefox browser, you'll need to install a minimal native client. Installation instructions for the native client are provided when you attempt to open a link. Additionally, there are two short video tutorials in the screenshot section, covering installation steps for both Windows and Linux or Mac operating systems.
2. This extension supports managed storage, allowing domain administrators to configure certain preferences.
3. It can send links via left-click, a combination of left-click and a keyboard meta key, or during top-level navigation.
4. As of now, there is no version available for Chrome OS.

Legal Disclaimer:
Firefox is a trademark of Mozilla Inc., registered in the U.S. and other countries. This extension is an independent project and is not affiliated with the Firefox team or Mozilla Inc.                    

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

ชื่อ Open in Firefox Open in Firefox
ID lmeddoobegbaiopohmpmmobpnpjifpii
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/open-in-firefox/lmeddoobegbaiopohmpmmobpnpjifpii
คำอธิบาย Open current page, link, or all tabs in the Firefox browser with a left-click or through right-click context menu.
ขนาดไฟล์ 191 KB
จำนวนการติดตั้ง 51,462
เวอร์ชันปัจจุบัน 0.4.3
อัปเดตครั้งล่าสุด 2023-09-24
วันที่เผยแพร่ 2019-12-30
คะแนน 3.41/5 รวมทั้งหมด 148 คะแนน
ผู้พัฒนา yokris.dev
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://webextension.org/listing/open-in.html?from=firefox
URL หน้าช่วยเหลือ https://webextension.org/listing/open-in.html?from=firefox
URL หน้านโยบายความเป็นส่วนตัว https://add0n.com/policies/yokris.dev.txt
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Open in Firefox",
    "description": "Open current page, link, or all tabs in the Firefox browser with a left-click or through right-click context menu.",
    "version": "0.4.3",
    "manifest_version": 3,
    "storage": {
        "managed_schema": "managed.json"
    },
    "permissions": [
        "activeTab",
        "storage",
        "contextMenus",
        "nativeMessaging"
    ],
    "optional_permissions": [
        "tabs",
        "downloads"
    ],
    "background": {
        "service_worker": "worker.js"
    },
    "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
    },
    "homepage_url": "https:\/\/webextension.org\/listing\/open-in.html?from=firefox",
    "commands": {
        "_execute_action": []
    }
}