Open In Firefox

Open current tabs, links, pages (or all of them) in firefox

什麼是Open In Firefox?

Open In Firefox是由Bnk開發的Chrome擴展程式,該擴展的主要功能是“Open current tabs, links, pages (or all of them) in firefox”。

擴展截圖

screenshot
screenshot

下載Open In Firefox擴展crx文件

下載Open In Firefox擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        * Open a tab or all tabs in Firefox
* Open selection/link/pic/video/audio etc.
* Keyboard shortcuts
Windows: 
   1. Just install the host program (no need to install python).
            https://openinfirefox.wixsite.com/openinfirefox
   2. Open options menu and make sure your the Firefox path is correct.
OSX / Linux: 
   1. Install Python 2.7 - https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi
   2. Download and run the install host script (Go to the add on page).
   3. Open options menu and make sure your the Firefox path is correct.                    

擴展基本資訊

名稱 Open In Firefox Open In Firefox
ID jmjejjdalfogiopknpabihjhplfkjjjk
官方網址 https://chromewebstore.google.com/detail/open-in-firefox/jmjejjdalfogiopknpabihjhplfkjjjk
簡介 Open current tabs, links, pages (or all of them) in firefox
檔案大小 160 KB
安裝次數 29,020
目前版本 3.1.2
更新時間 2023-12-21
上架時間 2017-04-22
評分 2.71/5 共 200 次評分
開發者 Bnk
電子郵箱 [email protected]
付費類型 free
擴展官網 http://openinfirefox.wix.com/openinfirefox
說明頁面URL https://openinfirefox.wixsite.com/openinfirefox
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCEz3PzdamntuP8WPAFpdYY8iNB3y1CvC7DcV19Zf\/aQMLLqDrv5\/LjE6Kk05snj\/aPWb3Dm\/eObJOhKfLGoFdBNfbFKaEC\/lJG+j2p7Xtq2\/7+KPvCugS18YcSBr3cePggLoUF3DGqsH1SUQzHyN\/ZipcPQypXVVydVdUwywzOzwIDAQAB",
    "name": "Open In Firefox",
    "version": "3.1.2",
    "manifest_version": 3,
    "description": "Open current tabs, links, pages (or all of them) in firefox",
    "short_name": "Open In Firefox",
    "background": {
        "service_worker": "service_worker.js",
        "type": "module"
    },
    "action": {
        "default_icon": {
            "16": "img\/icon16.png",
            "32": "img\/icon32.png",
            "48": "img\/icon48.png",
            "128": "img\/icon128.png"
        },
        "default_title": "Click to open in Firefox"
    },
    "content_scripts": [
        {
            "js": [
                "hotkey.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "16": "img\/icon16.png",
        "32": "img\/icon32.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "contextMenus",
        "nativeMessaging",
        "storage"
    ]
}