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"입니다.
확장 프로그램 스크린샷
Open In Firefox 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
* 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 |
ID | jmjejjdalfogiopknpabihjhplfkjjjk |
공식 URL | 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" ] } |