IE View WE Developer Edition

Provides ability to open pages and links by Internet Explorer (Cloned IE View based on WebExtensions-based)

IE View WE Developer Edition란 무엇입니까?

IE View WE Developer Edition은(는) ClearCode Inc.에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Provides ability to open pages and links by Internet Explorer (Cloned IE View based on WebExtensions-based)"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

IE View WE Developer Edition 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This is the development version of the "IE View WE" addon ported from Firefox to Chrome.

This is provided for testing use, because we cannot call webRequestBlocking API on Manifest V3 addon while development even if it is designed for enterprise use (see also: https://bugs.chromium.org/p/chromium/issues/detail?id=1338871 ). Not recommended for regular use.

----

It enables you to switch between browsers very easily, based on predefined URL patterns.

This requires its own binary module. Before you install this to your Chrome, you need to install the native messaging host by these steps:

1. Download a zip package "ieview-we-host.zip" from https://github.com/clear-code/ieview-we/releases
2. Unzip downloaded file.
3. Double-click the batch file named "install.bat".
4. Install this "IE View WE" extension to your Chrome.

For business use, this extension supports managed storage to provide fixed configs by the system administrator.
Please see also documents about Managed Storage API for developers.

Summarized Changelog for v2.0.0: Bump its version.                    

확장 프로그램 기본 정보

이름 IE View WE Developer Edition IE View WE Developer Edition
ID gahanoflpdcmbcaijjkopjeheaikclcl
공식 URL https://chromewebstore.google.com/detail/ie-view-we-developer-edit/gahanoflpdcmbcaijjkopjeheaikclcl
설명 Provides ability to open pages and links by Internet Explorer (Cloned IE View based on WebExtensions-based)
파일 크기 39.35 KB
설치 횟수 39
현재 버전 2.0.0
최근 업데이트 2022-08-30
출시 날짜 2022-08-24
개발자 ClearCode Inc.
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/clear-code/ieview-we/
도움말 페이지 URL https://github.com/clear-code/ieview-we/issues/
지원되는 언어 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extensionName__",
    "version": "2.0.0",
    "description": "__MSG_extensionDescription__",
    "permissions": [
        "contextMenus",
        "nativeMessaging",
        "storage",
        "alarms",
        "tabs",
        "webRequest",
        "webRequestBlocking"
    ],
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "background\/background.js",
        "type": "module"
    },
    "icons": {
        "128": "misc\/128x128.png"
    },
    "options_ui": {
        "page": "options\/options.html"
    },
    "default_locale": "en",
    "storage": {
        "managed_schema": "managed_schema.json"
    }
}