且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

有没有办法从 Chrome 扩展访问证书信息

更新时间:2023-08-30 22:53:04

2018 回答:webextensions(使用 Chrome 扩展 API)可以在 Firefox 62 中做到这一点

您需要制作一个 WebExtension,也称为浏览器扩展.

2018 answer: webextensions (which use the Chrome extension API) can do this in Firefox 62

You'll need to make a WebExtension, which is also called a browser extension.

请参阅访问 MDN 上的安全信息

您还可以查看以下文档:

You can also check out the docs for:

您需要 Firefox 62.

You'll need Firefox 62.

这是一个有效的 background.js

var log = console.log.bind(console)

log(`

TLS browser extension loaded`)

// https://developer.chrome.com/extensions/match_patterns
var ALL_SITES = { urls: ['<all_urls>'] }

// Mozilla doesn't use tlsInfo in extraInfoSpec 
var extraInfoSpec = ['blocking']; 

// https://developer.mozilla.org/en-US/Add-ons/WebExtensions/API/webRequest/onHeadersReceived
browser.webRequest.onHeadersReceived.addListener(async function(details){
    log(`

Got a request for ${details.url} with ID ${details.requestId}`)

    // Yeah this is a String, even though the content is a Number
    var requestId = details.requestId

    var securityInfo = await browser.webRequest.getSecurityInfo(requestId, {
        certificateChain: true,
        rawDER: false
    });

    log(`securityInfo: ${JSON.stringify(securityInfo, null, 2)}`)

}, ALL_SITES, extraInfoSpec) 

log('Added listener')

manifest.json:

{
    "manifest_version": 2,
    "name": "Test extension",
    "version": "1.0",
    "description": "Test extension.",
    "icons": {
        "48": "icons/border-48.png"
    },
    "background": {
        "scripts": ["background.js"]
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "<all_urls>"
    ]
}

它也可以在 Chromium 中实现一次合并此代码一个>.

It also may be implemented in Chromium once this code is merged.