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 |
| 公式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 |
| Eメール | [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"
]
}
]
} | |