NojimaLogin Extension (Staging)

SSO Chrome Extension

NojimaLogin Extension (Staging)란 무엇입니까?

NojimaLogin Extension (Staging)은(는) ntq_upload에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "SSO Chrome Extension"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

NojimaLogin Extension (Staging) 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        In Nojima company, there are many apps to serve work.
Because of there are so many apps, it is difficult for users to remember login information of each app.
They want to login to apps without remembering login information.
This extension will support users automatic login into company apps.

The main functions on the extension include:
- Show list of user apps
- Automatically log into apps when the user clicks on the app icon.

This extension is applied for Test environment.
So this is the reason why it has name with (Staging) letter.                    

확장 프로그램 기본 정보

이름 NojimaLogin Extension (Staging) NojimaLogin Extension (Staging)
ID odklbpeamccmojomjnklpaebdoiakead
공식 URL https://chromewebstore.google.com/detail/nojimalogin-extension-sta/odklbpeamccmojomjnklpaebdoiakead
설명 SSO Chrome Extension
파일 크기 670 KB
설치 횟수 97
현재 버전 0.0.1
최근 업데이트 2023-05-18
출시 날짜 2023-05-17
개발자 ntq_upload
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://sso-t.nojima.co.jp/
개인정보 보호 정책 페이지 URL https://www.nojima.co.jp/corporation/privacy
지원되는 언어 ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "NojimaLogin Extension (Staging)",
    "version": "0.0.1",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.bundle.js"
            ]
        }
    ],
    "permissions": [
        "cookies",
        "storage",
        "activeTab",
        "webRequest"
    ],
    "host_permissions": [
        "https:\/\/*.nojima.co.jp\/"
    ],
    "icons": {
        "16": "icon16.png",
        "24": "icon24.png",
        "32": "icon32.png",
        "64": "icon64.png",
        "128": "icon128.png"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "description": "SSO Chrome Extension"
}