rockstar
rockstar adds a bunch of great features to Okta, like exporting to a CSV.
¿Qué es rockstar?
rockstar es una extensión de Chrome desarrollada por rockstar, y su función principal es "rockstar adds a bunch of great features to Okta, like exporting to a CSV.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión rockstar
Descarga archivos de extensión rockstar en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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. Información Básica de la Extensión
| Nombre | |
| ID | chjepkekmhealpjipcggnfepkkfeimbd |
| URL Oficial | https://chromewebstore.google.com/detail/rockstar/chjepkekmhealpjipcggnfepkkfeimbd |
| Descripción | rockstar adds a bunch of great features to Okta, like exporting to a CSV. |
| Tamaño del Archivo | 58.79 KB |
| Cantidad de Instalaciones | 29,016 |
| Versión Actual | 0.28 |
| Última Actualización | 2024-01-25 |
| Fecha de Publicación | 2020-06-16 |
| Calificación | 4.93/5 Total de 42 Calificaciones |
| Desarrollador | rockstar |
| Correo electrónico | [email protected] |
| Tipo de Pago | free |
| Sitio Web de la Extensión | https://gabrielsroka.github.io/rockstar |
| Idiomas Soportados | 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"
]
}
]
} | |