diff options
author | Nicholas Tay <nick@windblume.net> | 2023-02-22 20:47:39 +0100 |
---|---|---|
committer | Nicholas Tay <nick@windblume.net> | 2023-02-22 20:47:39 +0100 |
commit | d538892da62ce2614b9493e64b79f8bac1438fb6 (patch) | |
tree | 316841b4773e04721bfc530c574a1421ac153ec3 /options.html | |
parent | 79d89b63e0a75f94d88d55e41fc123c5bf46e38c (diff) | |
download | certain-d538892da62ce2614b9493e64b79f8bac1438fb6.tar.gz certain-d538892da62ce2614b9493e64b79f8bac1438fb6.tar.bz2 certain-d538892da62ce2614b9493e64b79f8bac1438fb6.zip |
Somewhat working options page
Need to fix per tab thing
Diffstat (limited to '')
-rw-r--r-- | options.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/options.html b/options.html new file mode 100644 index 0000000..f04166d --- /dev/null +++ b/options.html @@ -0,0 +1,26 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="utf-8" /> +</head> +<body> + <h1>c/ertain</h1> + <h3>Extension settings</h3> + + <p> + Set up the issuer info for CAs you want to mark as insecure here (as matching substrings). Erase field and save to remove. + </p> + <p> + As per MDN: <i>For example: "CN=DigiCert SHA2 Secure Server CA,O=DigiCert Inc,C=US".</i> + </p> + <hr> + + <p> + <button id="addCert">+</button> + <ul id="certs"></ul> + <button id="save">Save</button> + </p> + + <script src="options.js"></script> +</body> +</html> |