Duochrome

Login through Duo Mobile in your browser.

Duochrome란 무엇입니까?

Duochrome은(는) Erich Boschert에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Login through Duo Mobile in your browser."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Duochrome 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        An alternative to the Duo Mobile app. Duochrome can log you in with just a click.

# FAQ
Q: How does it work?
A: Duochrome approves logins by simply clicking on the extension. It does not bypass Duo Mobile, it works just like the phone app.

Q: How do I set it up?
A: Just like your phone, you'll need to register it to your organization's Duo Mobile account. Duochrome provides instructions when installed.

Q: Does it work for all organizations?
A: Yes.

Q: Can I copy Duochrome to other computers?
A: Yes. In settings, press the export button to get your login data. You can import this data on another extension.

Q: Is this secure?
A: Yes. Extensions are protected by the modern security of your browser. For security details, visit the GitHub page.

Q: How do I uninstall it?
A: Right click Duochrome and select remove from Chrome/Edge. You'll need to revisit your organization's Duo Mobile devices page to remove it as a login device.                    

확장 프로그램 기본 정보

이름 Duochrome Duochrome
ID bnfooenhhgcnhdkdjelgmmkpaemlnoek
공식 URL https://chromewebstore.google.com/detail/duochrome/bnfooenhhgcnhdkdjelgmmkpaemlnoek
설명 Login through Duo Mobile in your browser.
파일 크기 3.2 MB
설치 횟수 3,235
현재 버전 1.3.9
최근 업데이트 2023-12-17
출시 날짜 2022-10-04
평점 5.00/5 총 4 개의 평점
개발자 Erich Boschert
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/FreshSupaSulley/Duochrome
도움말 페이지 URL https://github.com/FreshSupaSulley/Duochrome
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Duochrome",
    "description": "Login through Duo Mobile in your browser.",
    "version": "1.3.9",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/*.duosecurity.com\/*"
    ],
    "background": {
        "service_worker": "worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.duosecurity.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/16.png",
            "32": "\/images\/32.png",
            "48": "\/images\/48.png",
            "128": "\/images\/128.png"
        }
    },
    "icons": {
        "16": "\/images\/16.png",
        "32": "\/images\/32.png",
        "48": "\/images\/48.png",
        "128": "\/images\/128.png"
    }
}