Opkey Token Request Plugin

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

Qu'est-ce que Opkey Token Request Plugin ?

Opkey Token Request Plugin est une extension Chrome développée par https://myopkey.com, et sa fonction principale est "Opkey Token Request allows user to fetch access token for 'Authorization Code' and 'Implicit' grant types for 'OAuth2' type.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Opkey Token Request Plugin

Téléchargez les fichiers d'extension Opkey Token Request Plugin 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

                        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                    

Informations de Base sur l'Extension

Nom Opkey Token Request Plugin Opkey Token Request Plugin
ID ndbbblokinghdinhoffmohiflemgiako
URL Officiel https://chromewebstore.google.com/detail/opkey-token-request-plugi/ndbbblokinghdinhoffmohiflemgiako
Description Opkey Token Request allows user to fetch access token for 'Authorization Code' and 'Implicit' grant types for 'OAuth2' type.
Taille du Fichier 127 KB
Nombre d'Installations 31
Version Actuelle 1.0.0.4
Dernière Mise à Jour 2022-07-26
Date de Publication 2021-01-30
Évaluation 5.00/5 Total 2 Évaluations
Développeur https://myopkey.com
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
        }
    ]
}