CSP Tester

This extension helps web masters to test web application behaviour with Content Security Policy version 2.0 implemented.

什麼是CSP Tester?

CSP Tester是由oxdef開發的Chrome擴展程式,該擴展的主要功能是“This extension helps web masters to test web application behaviour with Content Security Policy version 2.0 implemented.”。

擴展截圖

screenshot

下載CSP Tester擴展crx文件

下載CSP Tester擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension helps web masters to test web application functionality
with Content Security Policy (CSP) version 2.0 implemented.

Typical workflow looks like:

1. Open the extension window
2. Add into the URL Pattern a regular expression for the site that you want to test, for example *://yoursite.com/* (CSP Tester uses Chrome Match Patterns)
3. Tick the e.g. "self" checkbox, check "Active" and Save the changes
4. Open the Developer Tools and navigate to the tested site
5. Confirm a number of CSP violations reported in the Developer Tools Console as well as possible visual changes
6. Make changes in the policy based on these reports                    

擴展基本資訊

名稱 CSP Tester CSP Tester
ID ehmipebdmhlmikaopdfoinmcjhhfadlf
官方網址 https://chromewebstore.google.com/detail/csp-tester/ehmipebdmhlmikaopdfoinmcjhhfadlf
簡介 This extension helps web masters to test web application behaviour with Content Security Policy version 2.0 implemented.
檔案大小 16.61 KB
安裝次數 2,090
目前版本 2.1
更新時間 2018-10-02
上架時間 2018-09-02
評分 3.71/5 共 7 次評分
開發者 oxdef
付費類型 free
擴展官網 https://oxdef.info/csp-tester
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CSP Tester",
    "description": "This extension helps web masters to test web application behaviour with Content Security Policy version 2.0 implemented.",
    "version": "2.1",
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "browser_action": {
        "default_icon": "icon16.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "homepage_url": "https:\/\/oxdef.info\/csp-tester",
    "applications": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "45.0"
        }
    }
}