Opkey Token Request Plugin

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

Cos'è Opkey Token Request Plugin?

Opkey Token Request Plugin è un'estensione di Chrome sviluppata da https://myopkey.com, e la sua funzione principale è "Opkey Token Request allows user to fetch access token for 'Authorization Code' and 'Implicit' grant types for 'OAuth2' type.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Opkey Token Request Plugin

Scarica i file di estensione Opkey Token Request Plugin in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Opkey Token Request Plugin Opkey Token Request Plugin
ID ndbbblokinghdinhoffmohiflemgiako
URL Ufficiale https://chromewebstore.google.com/detail/opkey-token-request-plugi/ndbbblokinghdinhoffmohiflemgiako
Descrizione Opkey Token Request allows user to fetch access token for 'Authorization Code' and 'Implicit' grant types for 'OAuth2' type.
Dimensione del File 127 KB
Conteggio Installazioni 31
Versione Corrente 1.0.0.4
Ultimo Aggiornamento 2022-07-26
Data di Pubblicazione 2021-01-30
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore https://myopkey.com
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
        }
    ]
}