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.”。
擴展截圖
下載rockstar擴展crx文件
下載rockstar擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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. 擴展基本資訊
| 名稱 | |
| ID | chjepkekmhealpjipcggnfepkkfeimbd |
| 官方網址 | 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"
]
}
]
} | |