rockstar

rockstar adds a bunch of great features to Okta, like exporting to a CSV.

rockstar란 무엇입니까?

rockstar은(는) rockstar에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "rockstar adds a bunch of great features to Okta, like exporting to a CSV."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        rockstar adds a bunch of great features to Okta, such as:
Export Objects to CSV, including: Users, Groups, Group Members, Group Rules, Directory Users, Apps, App Users, App Groups, App Notes, Network Zones, YubiKeys, Mappings, Admins...
User home page: Show SSO (SAML assertion...)
People page: enhanced search
Person page: show login/email and AD info, show user detail, enhance menus/title, manage user's admin roles, verify factors, set password
Groups page: search using regular expressions (like wildcards)
Active Directory page: show OU tooltips, export OUs
Identity Providers page: show SAML certificate expiration date
System Log: Expand All and Expand Each Row
API: API Explorer, Pretty Print JSON
Many: enhanced menus

rockstar runs in your browser, it doesn't send your data anywhere.

Note: This extension was not created by Okta. It is not supported by Okta. It is an unofficial extension created by the community.                    

확장 프로그램 기본 정보

이름 rockstar rockstar
ID chjepkekmhealpjipcggnfepkkfeimbd
공식 URL https://chromewebstore.google.com/detail/rockstar/chjepkekmhealpjipcggnfepkkfeimbd
설명 rockstar adds a bunch of great features to Okta, like exporting to a CSV.
파일 크기 58.79 KB
설치 횟수 29,016
현재 버전 0.28
최근 업데이트 2024-01-25
출시 날짜 2020-06-16
평점 4.93/5 총 42 개의 평점
개발자 rockstar
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://gabrielsroka.github.io/rockstar
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "rockstar",
    "version": "0.28",
    "description": "rockstar adds a bunch of great features to Okta, like exporting to a CSV.",
    "omnibox": {
        "keyword": "rs"
    },
    "page_action": {
        "default_popup": "menu.html"
    },
    "icons": {
        "16": "rockstar_icon_16.png",
        "128": "rockstar_icon_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "declarativeContent"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.okta.com\/*",
                "https:\/\/*.okta-emea.com\/*",
                "https:\/\/*.oktapreview.com\/*",
                "https:\/\/*.okta-gov.com\/*"
            ],
            "js": [
                "jquery-1.12.4.min.PATCHED.js",
                "rockstar.js"
            ],
            "css": [
                "rockstar.css"
            ]
        }
    ]
}