KAIST AutoOTP

KAIST AutoOTP generates OTP passwords in your browser.

什么是KAIST AutoOTP?

KAIST AutoOTP是由kaistautootp开发的Chrome扩展程序,该扩展的主要功能是“KAIST AutoOTP generates OTP passwords in your browser.”。

扩展截图

screenshot

下载KAIST AutoOTP扩展crx文件

下载KAIST AutoOTP扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        KAIST AutoOTP는 빠른 2차 인증을 위해 당신의 브라우저에서 OTP를 자동 생성합니다. 카이스트 2차 인증 페이지에 접속하시면 OTP가 자동으로 복사되어 빠른 2차 인증이 가능합니다. 

KAIST AutoOTP generates OTP passwords in your browser. These passwords are automatically copied when you are accessing the KAIST's two-factor authentication page.                    

扩展基本信息

名称 KAIST AutoOTP KAIST AutoOTP
ID pffidaimjkjobklpjdkgahhjbnmajpan
官方URL https://chromewebstore.google.com/detail/kaist-autootp/pffidaimjkjobklpjdkgahhjbnmajpan
简介 KAIST AutoOTP generates OTP passwords in your browser.
文件大小 19.41 KB
安装次数 1,612
当前版本 2.0.2
更新时间 2021-08-27
上架时间 2021-08-04
评分 5.00/5 共2次评分
开发者 kaistautootp
电子邮箱 [email protected]
付费类型 free
扩展官网 https://techprovider2021.github.io/kaistotp/
支持的语言 ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "KAIST AutoOTP",
    "version": "2.0.2",
    "description": "KAIST AutoOTP generates OTP passwords in your browser.",
    "icons": {
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "sha.js",
                "control.js",
                "script.js"
            ],
            "matches": [
                "https:\/\/iam2.kaist.ac.kr\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "browser_action": {
        "default_icon": {
            "32": "icon32.png"
        },
        "default_popup": "popup.html"
    },
    "permissions": [
        "https:\/\/iam2.kaist.ac.kr\/*",
        "storage"
    ],
    "manifest_version": 2
}