NojimaLogin Extension
SSO Chrome Extension
什麼是NojimaLogin Extension?
NojimaLogin Extension是由ntq_upload開發的Chrome擴展程式,該擴展的主要功能是“SSO Chrome Extension”。
擴展截圖
下載NojimaLogin Extension擴展crx文件
下載NojimaLogin Extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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. 擴展基本資訊
| 名稱 | |
| ID | joeloeifimkfbnifgnhaiedbnmfflhoo |
| 官方網址 | https://chromewebstore.google.com/detail/nojimalogin-extension/joeloeifimkfbnifgnhaiedbnmfflhoo |
| 簡介 | SSO Chrome Extension |
| 檔案大小 | 670 KB |
| 安裝次數 | 6,679 |
| 目前版本 | 0.1.9 |
| 更新時間 | 2023-05-23 |
| 上架時間 | 2023-05-22 |
| 開發者 | ntq_upload |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://sso.nojima.co.jp/ |
| 隱私政策頁面URL | https://www.nojima.co.jp/corporation/privacy |
| 支援的語言 | ja |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "NojimaLogin Extension",
"version": "0.1.9",
"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"
} | |