Open in IE

Send HTML links and webpages directly to the Internet Explorer browser without copy and paste!

Open in IEคืออะไร?

Open in IE เป็นส่วนขยายของ Chrome ที่พัฒนาโดย rynu.smith และคุณลักษณะหลักของมันคือ "Send HTML links and webpages directly to the Internet Explorer browser without copy and paste!"

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

screenshot

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

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

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

                        This extension simplifies transferring links from your web browser to Microsoft's Internet Explorer. It offers four distinct methods for link transfer:

1) Right-click on a link and select "Send to IE."
2) Use the browser action button to send the current page to IE.
3) Customize a left-click action with a modifier key to send the link to IE.
4) Set up specific hostnames to be sent to IE with a left-click (no modifier is required).

Furthermore, this extension uses managed storage, enabling a domain administrator to configure all network-connected computers to open a particular website in Microsoft's Internet Explorer, eliminating the need for individual machine modifications.

Please note that this extension employs a native client to execute OS-level commands. The native client is written in JavaScript and relies on official NodeJS as its compiler. It is mandatory to have this native client on your system to establish communication with Microsoft's Internet Explorer. However, please be aware that this native client is currently incompatible with Chrome OS.

--- Legal Information
IE is a registered trademark of Microsoft Inc. in the U.S. and other countries. This extension is an independent project and is not affiliated with the IE development team or Microsoft Inc.

Log:
Version 0.3.0: The extension has been updated to manifest v3.                    

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

ชื่อ Open in IE Open in IE
ID looohpideggedchhpphemdmppnmdkgfd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/open-in-ie/looohpideggedchhpphemdmppnmdkgfd
คำอธิบาย Send HTML links and webpages directly to the Internet Explorer browser without copy and paste!
ขนาดไฟล์ 66.47 KB
จำนวนการติดตั้ง 33,070
เวอร์ชันปัจจุบัน 0.3.3
อัปเดตครั้งล่าสุด 2023-09-26
วันที่เผยแพร่ 2020-01-25
คะแนน 3.45/5 รวมทั้งหมด 51 คะแนน
ผู้พัฒนา rynu.smith
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://webextension.org/listing/open-in.html?from=ie
URL หน้าช่วยเหลือ https://webextension.org/listing/open-in.html?from=ie
URL หน้านโยบายความเป็นส่วนตัว https://add0n.com/policies/rynu.smith.txt
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Open in IE",
    "description": "Send HTML links and webpages directly to the Internet Explorer browser without copy and paste!",
    "version": "0.3.3",
    "manifest_version": 3,
    "minimum_chrome_version": "95",
    "homepage_url": "https:\/\/webextension.org\/listing\/open-in.html?from=ie",
    "permissions": [
        "tabs",
        "storage",
        "contextMenus",
        "nativeMessaging"
    ],
    "optional_permissions": [
        "downloads"
    ],
    "background": {
        "service_worker": "worker.js"
    },
    "storage": {
        "managed_schema": "ie-schema.json"
    },
    "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\/page\/protected.js"
            ],
            "world": "ISOLATED",
            "run_at": "document_start",
            "all_frames": true,
            "match_about_blank": true
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "\/data\/page\/exposed.js"
            ],
            "world": "MAIN",
            "run_at": "document_start",
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "action": [],
    "options_ui": {
        "page": "\/data\/options\/index.html",
        "open_in_tab": true
    },
    "commands": {
        "_execute_action": []
    }
}