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 là gì?

Opkey Token Request Plugin là một tiện ích mở rộng Chrome được phát triển bởi https://myopkey.com, và tính năng chính của nó là "Opkey Token Request allows user to fetch access token for 'Authorization Code' and 'Implicit' grant types for 'OAuth2' type.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Opkey Token Request Plugin

Tải xuống các tệp mở rộng Opkey Token Request Plugin dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Opkey Token Request Plugin Opkey Token Request Plugin
ID ndbbblokinghdinhoffmohiflemgiako
URL Chính Thức https://chromewebstore.google.com/detail/opkey-token-request-plugi/ndbbblokinghdinhoffmohiflemgiako
Mô tả Opkey Token Request allows user to fetch access token for 'Authorization Code' and 'Implicit' grant types for 'OAuth2' type.
Kích Thước Tệp 127 KB
Số Lần Cài Đặt 31
Phiên Bản Hiện Tại 1.0.0.4
Cập Nhật Lần Cuối 2022-07-26
Ngày Phát Hành 2021-01-30
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://myopkey.com
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}