mirror of
https://github.com/tlsnotary/PageSigner.git
synced 2026-01-08 22:27:57 -05:00
69 lines
1.8 KiB
JSON
69 lines
1.8 KiB
JSON
{
|
|
"manifest_version": 2,
|
|
|
|
"name": "PageSigner",
|
|
"description": "PageSigner - a cryptographically secure webpage screenshot tool",
|
|
"version": "1.0",
|
|
"author": "TLSNotary Group",
|
|
|
|
"permissions": [
|
|
"background",
|
|
"*://*/*", //need https to listen for requests and http to send stuff to oracle
|
|
"file://*", //ideally we should limit acces only to pagesigner.tmp.dir but Chrome can't do that
|
|
"webRequest",
|
|
"webRequestBlocking",
|
|
"activeTab",
|
|
"tabs",
|
|
"storage",
|
|
"unlimitedStorage",
|
|
"management",
|
|
"downloads",
|
|
"downloads.shelf"
|
|
],
|
|
|
|
"icons": {
|
|
"64": "icon.png" //Chrome will scale down as needed
|
|
},
|
|
|
|
//this is needed for asn1.js
|
|
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
|
|
|
|
|
|
"browser_action": {
|
|
"default_icon": "icon.png",
|
|
"default_popup": "content/chrome/popup.html"
|
|
},
|
|
|
|
"background": {
|
|
"scripts": [
|
|
"content/chrome/chrome_specific.js",
|
|
"content/tlsn_utils.js",
|
|
"content/oracles.js",
|
|
"content/CryptoJS/components/core.js",
|
|
"content/CryptoJS/components/md5.js",
|
|
"content/CryptoJS/components/evpkdf.js",
|
|
"content/CryptoJS/components/enc-base64.js",
|
|
"content/CryptoJS/components/sha1.js",
|
|
"content/CryptoJS/components/sha256.js",
|
|
"content/CryptoJS/components/hmac.js",
|
|
"content/CryptoJS/components/cipher-core.js",
|
|
"content/CryptoJS/components/aes.js",
|
|
"content/CryptoJS/components/pad-nopadding.js",
|
|
"content/jsbn.js",
|
|
"content/jsbn2.js",
|
|
"content/pako.js",
|
|
"content/tlsn.js",
|
|
"content/main.js",
|
|
"content/testing/testing.js",
|
|
"content/verifychain/buffer.js",
|
|
"content/verifychain/asn1.js",
|
|
"content/verifychain/jsrsasign-latest-all-min.js",
|
|
"content/verifychain/rootcertslist.js",
|
|
"content/verifychain/rootcerts.js",
|
|
"content/verifychain/verifychain.js"
|
|
]
|
|
}
|
|
|
|
|
|
}
|