NojimaLogin Extension (Staging)
SSO Chrome Extension
Qu'est-ce que NojimaLogin Extension (Staging) ?
NojimaLogin Extension (Staging) est une extension Chrome développée par ntq_upload, et sa fonction principale est "SSO Chrome Extension".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension NojimaLogin Extension (Staging)
Téléchargez les fichiers d'extension NojimaLogin Extension (Staging) au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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. Informations de Base sur l'Extension
| Nom | |
| ID | odklbpeamccmojomjnklpaebdoiakead |
| URL Officiel | https://chromewebstore.google.com/detail/nojimalogin-extension-sta/odklbpeamccmojomjnklpaebdoiakead |
| Description | SSO Chrome Extension |
| Taille du Fichier | 670 KB |
| Nombre d'Installations | 97 |
| Version Actuelle | 0.0.1 |
| Dernière Mise à Jour | 2023-05-18 |
| Date de Publication | 2023-05-17 |
| Développeur | ntq_upload |
| [email protected] | |
| Type de Paiement | free |
| Site Web de l'Extension | https://sso-t.nojima.co.jp/ |
| URL de la Page de Politique de Confidentialité | https://www.nojima.co.jp/corporation/privacy |
| Langues Prises en Charge | 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"
} | |