Opkey Token Request Plugin

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

Was ist Opkey Token Request Plugin?

Opkey Token Request Plugin ist eine Chrome-Erweiterung, die von https://myopkey.com entwickelt wurde, und ihr Hauptmerkmal ist "Opkey Token Request allows user to fetch access token for 'Authorization Code' and 'Implicit' grant types for 'OAuth2' type.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Opkey Token Request Plugin-Erweiterungs-CRX-Datei herunterladen

Laden Sie Opkey Token Request Plugin-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Opkey Token Request Plugin Opkey Token Request Plugin
ID ndbbblokinghdinhoffmohiflemgiako
Offizielle URL https://chromewebstore.google.com/detail/opkey-token-request-plugi/ndbbblokinghdinhoffmohiflemgiako
Beschreibung Opkey Token Request allows user to fetch access token for 'Authorization Code' and 'Implicit' grant types for 'OAuth2' type.
Dateigröße 127 KB
Installationsanzahl 31
Aktuelle Version 1.0.0.4
Letztes Update 2022-07-26
Veröffentlichungsdatum 2021-01-30
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler https://myopkey.com
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
        }
    ]
}