IE Tab

Display web pages using IE within Chrome. Use Java, Silverlight, ActiveX, Sharepoint, and more.

IE Tabคืออะไร?

IE Tab เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.blackfishsoftware.com และคุณลักษณะหลักของมันคือ "Display web pages using IE within Chrome. Use Java, Silverlight, ActiveX, Sharepoint, and more."

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

screenshot
screenshot
screenshot

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

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

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

                        IE Tab exactly emulates Internet Explorer, and enables you to load your web pages with different versions of IE (IE7 - IE11)

FULLY SUPPORTED IN WINDOWS 11 AND AFTER INTERNET EXPLORER IS REMOVED IN FEBRUARY 2023.

Please note that IE Tab for Windows does require the use of a separate executable, ietabhelper.exe.  You can read more about that in the FAQ below.

-- FEATURES --

* Create a list of URLs that will automatically open in IE Tab

* Group Policy support for enterprise deployments

* Securely use the old IE rendering engine

* Edit Sharepoint documents instead of opening read-only

* Use Java, Silverlight, and ActiveX in Chrome seamlessly

-- FREQUENTLY ASKED QUESTIONS --

1. Why do I have to install ietabhelper.exe?

IE Tab uses the Internet Explorer rendering engine. This rendering engine can't be directly accessed from a Chrome extension, so we need a helper process to communicate between the Chrome extension and the rendering engine. 

2. Did IE Tab always require this extra program?

No. Chrome used to support a technology called NPAPI (the Netscape Plugin API) which allowed extensions to access local computer resources. IE Tab used to use that functionality to access the Internet Explorer rendering engine. But Chrome removed NPAPI support, so we were forced to implement a new solution, and that solution requires a separate helper executable. From a technical standpoint, the only real change is that our code moved from an NPAPI .DLL file to a helper .EXE file. 

3. Is the IE Tab Helper application safe?

Absolutely! IE Tab has always used native code, and we have always treated the security of our 2+ million users very seriously. So you can rest assured that this helper executable is secure and trustworthy. 

4. I'm an enterprise customer, how do I deploy the IE Tab Helper automatically?

We have enterprise deployment options, please contact us at [email protected] for details. 


The Privacy Policy for the IE Tab extension can be found here:  http://www.ietab.net/privacy-policy                    

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

ชื่อ IE Tab IE Tab
ID hehijbfgiekmjfkfjpbkbammjbdenadd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/ie-tab/hehijbfgiekmjfkfjpbkbammjbdenadd
คำอธิบาย Display web pages using IE within Chrome. Use Java, Silverlight, ActiveX, Sharepoint, and more.
ขนาดไฟล์ 928 KB
จำนวนการติดตั้ง 6,000,000
เวอร์ชันปัจจุบัน 17.3.3.1
อัปเดตครั้งล่าสุด 2024-03-04
วันที่เผยแพร่ 2020-01-07
คะแนน 4.32/5 รวมทั้งหมด 19078 คะแนน
ผู้พัฒนา https://www.blackfishsoftware.com
อีเมล [email protected]
ประเภทการชำระเงิน in_app
เว็บไซต์ส่วนขยาย https://www.ietab.net
URL หน้าช่วยเหลือ https://www.ietab.net/support
URL หน้านโยบายความเป็นส่วนตัว http://www.ietab.net/privacy-policy
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "IE Tab",
    "short_name": "IE Tab",
    "manifest_version": 2,
    "version": "17.3.3.1",
    "description": "__MSG_extDescription__",
    "options_page": "options.html",
    "default_locale": "en_US",
    "storage": {
        "managed_schema": "managed_schema.json"
    },
    "background": {
        "page": "background.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com https:\/\/www.google-analytics.com; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.ietab.net\/*"
            ],
            "js": [
                "js\/extapi_cs.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/ietabapi_cs.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "images\/chromeie16.png",
        "32": "images\/chromeie32.png",
        "48": "images\/chromeie48.png",
        "128": "images\/chromeie128.png"
    },
    "browser_action": {
        "default_icon": "images\/chromeba.png",
        "default_title": "__MSG_extBrowserActionTooltip__"
    },
    "web_accessible_resources": [
        "js\/extapi_wp.js",
        "js\/ietabapi_wp.js",
        "redir.htm"
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.ietab.net\/*"
        ],
        "ids": [
            "*"
        ]
    },
    "permissions": [
        "tabs",
        "contextMenus",
        "webRequest",
        "webRequestBlocking",
        "nativeMessaging",
        "cookies",
        ""
    ],
    "optional_permissions": [
        "downloads"
    ]
}