Opkey Token Request Plugin

Opkey Token Request allows user to fetch access token for 'Authorization Code' and 'Implicit' grant types for 'OAuth2' type.

什麼是Opkey Token Request Plugin?

Opkey Token Request Plugin是由https://myopkey.com開發的Chrome擴展程式,該擴展的主要功能是“Opkey Token Request allows user to fetch access token for 'Authorization Code' and 'Implicit' grant types for 'OAuth2' type.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Opkey Token Request Plugin擴展crx文件

下載Opkey Token Request Plugin擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Opkey Token Request is a plugin which allows user to fetch access token for 'Authorization Code' and 'Implicit' grant types for 'OAuth2' type authentication type. Following modules in Opkey utilizes the plugin service: 1. Token Management 2. Service Repository                    

擴展基本資訊

名稱 Opkey Token Request Plugin Opkey Token Request Plugin
ID ndbbblokinghdinhoffmohiflemgiako
官方網址 https://chromewebstore.google.com/detail/opkey-token-request-plugi/ndbbblokinghdinhoffmohiflemgiako
簡介 Opkey Token Request allows user to fetch access token for 'Authorization Code' and 'Implicit' grant types for 'OAuth2' type.
檔案大小 127 KB
安裝次數 31
目前版本 1.0.0.4
更新時間 2022-07-26
上架時間 2021-01-30
評分 5.00/5 共 2 次評分
開發者 https://myopkey.com
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "SSTS",
    "manifest_version": 2,
    "name": "Opkey Token Request Plugin",
    "permissions": [
        "tabs",
        "",
        "webRequest",
        "webRequestBlocking"
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/localhost\/*",
            "*:\/\/*.myopkey.com\/*",
            "*:\/\/*.smartopkey.com\/*"
        ]
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "version": "1.0.0.4",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "description": "Opkey Token Request allows user to fetch access token for 'Authorization Code' and 'Implicit' grant types for 'OAuth2' type.",
    "icons": {
        "16": "icons\/addon128.png",
        "32": "icons\/addon128.png",
        "48": "icons\/addon128.png",
        "128": "icons\/addon128.png"
    },
    "browser_action": {
        "default_icon": {
            "32": "icons\/addon128.png",
            "16": "icons\/addon128.png",
            "14": "icons\/addon128.png",
            "12": "icons\/addon128.png"
        },
        "default_title": "Opkey"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/jquery_min.js",
                "js\/recorder\/salesforcemdai.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ]
}