├── .gitignore ├── LICENSE ├── drawings ├── clean.cdr ├── defected.cdr ├── icon-16.cdr ├── icon.cdr ├── screenshot 1.png ├── screenshot 2.png ├── screenshot 3.png └── wait.cdr ├── old ├── builds │ ├── packed │ │ ├── firefox.xpi │ │ ├── icon.png │ │ └── icon64.png │ └── unpacked │ │ └── chrome │ │ ├── data │ │ ├── content_script │ │ │ ├── chrome │ │ │ │ └── chrome.js │ │ │ ├── clean.png │ │ │ ├── close.png │ │ │ ├── defected.png │ │ │ ├── iframe.css │ │ │ ├── iframe.js │ │ │ ├── inject.js │ │ │ ├── load.gif │ │ │ └── wait.png │ │ └── icons │ │ │ ├── 128.png │ │ │ ├── 16.png │ │ │ ├── 24.png │ │ │ ├── 256.png │ │ │ ├── 32.png │ │ │ └── 48.png │ │ ├── lib │ │ ├── chrome │ │ │ └── chrome.js │ │ ├── common.js │ │ └── config.js │ │ └── manifest.json ├── gulpfile.js └── src │ ├── Icon-64.png │ ├── Info.plist │ ├── data │ ├── content_script │ │ ├── chrome │ │ │ └── chrome.js │ │ ├── clean.png │ │ ├── close.png │ │ ├── defected.png │ │ ├── firefox │ │ │ └── firefox.js │ │ ├── iframe.css │ │ ├── iframe.js │ │ ├── inject.js │ │ ├── load.gif │ │ ├── safari │ │ │ └── safari.js │ │ └── wait.png │ └── icons │ │ ├── 128.png │ │ ├── 16.png │ │ ├── 24.png │ │ ├── 256.png │ │ ├── 32.png │ │ └── 48.png │ ├── lib │ ├── chrome │ │ └── chrome.js │ ├── common.js │ ├── config.js │ ├── firefox │ │ └── firefox.js │ └── safari │ │ ├── background.html │ │ ├── q.js │ │ ├── safari.html │ │ └── safari.js │ ├── manifest.json │ ├── package.json │ └── update.plist └── webextension ├── common.js ├── data ├── icons │ ├── 128.png │ ├── 16.png │ ├── 256.png │ ├── 32.png │ ├── 48.png │ └── 64.png ├── inject │ ├── clean.png │ ├── close.png │ ├── defected.png │ ├── iframe.css │ ├── iframe.html │ ├── iframe.js │ ├── inject.js │ ├── load.gif │ └── wait.png ├── options │ ├── index.html │ ├── index.js │ ├── matched.js │ └── matched.json └── report │ ├── index.css │ ├── index.html │ └── index.js └── manifest.json /.gitignore: -------------------------------------------------------------------------------- 1 | addon-sdk* 2 | node_modules/ 3 | test/ 4 | .DS_Store 5 | Thumbs.db -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/LICENSE -------------------------------------------------------------------------------- /drawings/clean.cdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/drawings/clean.cdr -------------------------------------------------------------------------------- /drawings/defected.cdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/drawings/defected.cdr -------------------------------------------------------------------------------- /drawings/icon-16.cdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/drawings/icon-16.cdr -------------------------------------------------------------------------------- /drawings/icon.cdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/drawings/icon.cdr -------------------------------------------------------------------------------- /drawings/screenshot 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/drawings/screenshot 1.png -------------------------------------------------------------------------------- /drawings/screenshot 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/drawings/screenshot 2.png -------------------------------------------------------------------------------- /drawings/screenshot 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/drawings/screenshot 3.png -------------------------------------------------------------------------------- /drawings/wait.cdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/drawings/wait.cdr -------------------------------------------------------------------------------- /old/builds/packed/firefox.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/builds/packed/firefox.xpi -------------------------------------------------------------------------------- /old/builds/packed/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/builds/packed/icon.png -------------------------------------------------------------------------------- /old/builds/packed/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/builds/packed/icon64.png -------------------------------------------------------------------------------- /old/builds/unpacked/chrome/data/content_script/chrome/chrome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/builds/unpacked/chrome/data/content_script/chrome/chrome.js -------------------------------------------------------------------------------- /old/builds/unpacked/chrome/data/content_script/clean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/builds/unpacked/chrome/data/content_script/clean.png -------------------------------------------------------------------------------- /old/builds/unpacked/chrome/data/content_script/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/builds/unpacked/chrome/data/content_script/close.png -------------------------------------------------------------------------------- /old/builds/unpacked/chrome/data/content_script/defected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/builds/unpacked/chrome/data/content_script/defected.png -------------------------------------------------------------------------------- /old/builds/unpacked/chrome/data/content_script/iframe.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/builds/unpacked/chrome/data/content_script/iframe.css -------------------------------------------------------------------------------- /old/builds/unpacked/chrome/data/content_script/iframe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/builds/unpacked/chrome/data/content_script/iframe.js -------------------------------------------------------------------------------- /old/builds/unpacked/chrome/data/content_script/inject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/builds/unpacked/chrome/data/content_script/inject.js -------------------------------------------------------------------------------- /old/builds/unpacked/chrome/data/content_script/load.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/builds/unpacked/chrome/data/content_script/load.gif -------------------------------------------------------------------------------- /old/builds/unpacked/chrome/data/content_script/wait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/builds/unpacked/chrome/data/content_script/wait.png -------------------------------------------------------------------------------- /old/builds/unpacked/chrome/data/icons/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/builds/unpacked/chrome/data/icons/128.png -------------------------------------------------------------------------------- /old/builds/unpacked/chrome/data/icons/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/builds/unpacked/chrome/data/icons/16.png -------------------------------------------------------------------------------- /old/builds/unpacked/chrome/data/icons/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/builds/unpacked/chrome/data/icons/24.png -------------------------------------------------------------------------------- /old/builds/unpacked/chrome/data/icons/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/builds/unpacked/chrome/data/icons/256.png -------------------------------------------------------------------------------- /old/builds/unpacked/chrome/data/icons/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/builds/unpacked/chrome/data/icons/32.png -------------------------------------------------------------------------------- /old/builds/unpacked/chrome/data/icons/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/builds/unpacked/chrome/data/icons/48.png -------------------------------------------------------------------------------- /old/builds/unpacked/chrome/lib/chrome/chrome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/builds/unpacked/chrome/lib/chrome/chrome.js -------------------------------------------------------------------------------- /old/builds/unpacked/chrome/lib/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/builds/unpacked/chrome/lib/common.js -------------------------------------------------------------------------------- /old/builds/unpacked/chrome/lib/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/builds/unpacked/chrome/lib/config.js -------------------------------------------------------------------------------- /old/builds/unpacked/chrome/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/builds/unpacked/chrome/manifest.json -------------------------------------------------------------------------------- /old/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/gulpfile.js -------------------------------------------------------------------------------- /old/src/Icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/src/Icon-64.png -------------------------------------------------------------------------------- /old/src/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/src/Info.plist -------------------------------------------------------------------------------- /old/src/data/content_script/chrome/chrome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/src/data/content_script/chrome/chrome.js -------------------------------------------------------------------------------- /old/src/data/content_script/clean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/src/data/content_script/clean.png -------------------------------------------------------------------------------- /old/src/data/content_script/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/src/data/content_script/close.png -------------------------------------------------------------------------------- /old/src/data/content_script/defected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/src/data/content_script/defected.png -------------------------------------------------------------------------------- /old/src/data/content_script/firefox/firefox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/src/data/content_script/firefox/firefox.js -------------------------------------------------------------------------------- /old/src/data/content_script/iframe.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/src/data/content_script/iframe.css -------------------------------------------------------------------------------- /old/src/data/content_script/iframe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/src/data/content_script/iframe.js -------------------------------------------------------------------------------- /old/src/data/content_script/inject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/src/data/content_script/inject.js -------------------------------------------------------------------------------- /old/src/data/content_script/load.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/src/data/content_script/load.gif -------------------------------------------------------------------------------- /old/src/data/content_script/safari/safari.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/src/data/content_script/safari/safari.js -------------------------------------------------------------------------------- /old/src/data/content_script/wait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/src/data/content_script/wait.png -------------------------------------------------------------------------------- /old/src/data/icons/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/src/data/icons/128.png -------------------------------------------------------------------------------- /old/src/data/icons/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/src/data/icons/16.png -------------------------------------------------------------------------------- /old/src/data/icons/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/src/data/icons/24.png -------------------------------------------------------------------------------- /old/src/data/icons/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/src/data/icons/256.png -------------------------------------------------------------------------------- /old/src/data/icons/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/src/data/icons/32.png -------------------------------------------------------------------------------- /old/src/data/icons/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/src/data/icons/48.png -------------------------------------------------------------------------------- /old/src/lib/chrome/chrome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/src/lib/chrome/chrome.js -------------------------------------------------------------------------------- /old/src/lib/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/src/lib/common.js -------------------------------------------------------------------------------- /old/src/lib/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/src/lib/config.js -------------------------------------------------------------------------------- /old/src/lib/firefox/firefox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/src/lib/firefox/firefox.js -------------------------------------------------------------------------------- /old/src/lib/safari/background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/src/lib/safari/background.html -------------------------------------------------------------------------------- /old/src/lib/safari/q.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/src/lib/safari/q.js -------------------------------------------------------------------------------- /old/src/lib/safari/safari.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/src/lib/safari/safari.html -------------------------------------------------------------------------------- /old/src/lib/safari/safari.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/src/lib/safari/safari.js -------------------------------------------------------------------------------- /old/src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/src/manifest.json -------------------------------------------------------------------------------- /old/src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/src/package.json -------------------------------------------------------------------------------- /old/src/update.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/old/src/update.plist -------------------------------------------------------------------------------- /webextension/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/webextension/common.js -------------------------------------------------------------------------------- /webextension/data/icons/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/webextension/data/icons/128.png -------------------------------------------------------------------------------- /webextension/data/icons/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/webextension/data/icons/16.png -------------------------------------------------------------------------------- /webextension/data/icons/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/webextension/data/icons/256.png -------------------------------------------------------------------------------- /webextension/data/icons/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/webextension/data/icons/32.png -------------------------------------------------------------------------------- /webextension/data/icons/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/webextension/data/icons/48.png -------------------------------------------------------------------------------- /webextension/data/icons/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/webextension/data/icons/64.png -------------------------------------------------------------------------------- /webextension/data/inject/clean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/webextension/data/inject/clean.png -------------------------------------------------------------------------------- /webextension/data/inject/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/webextension/data/inject/close.png -------------------------------------------------------------------------------- /webextension/data/inject/defected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/webextension/data/inject/defected.png -------------------------------------------------------------------------------- /webextension/data/inject/iframe.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/webextension/data/inject/iframe.css -------------------------------------------------------------------------------- /webextension/data/inject/iframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/webextension/data/inject/iframe.html -------------------------------------------------------------------------------- /webextension/data/inject/iframe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/webextension/data/inject/iframe.js -------------------------------------------------------------------------------- /webextension/data/inject/inject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/webextension/data/inject/inject.js -------------------------------------------------------------------------------- /webextension/data/inject/load.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/webextension/data/inject/load.gif -------------------------------------------------------------------------------- /webextension/data/inject/wait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/webextension/data/inject/wait.png -------------------------------------------------------------------------------- /webextension/data/options/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/webextension/data/options/index.html -------------------------------------------------------------------------------- /webextension/data/options/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/webextension/data/options/index.js -------------------------------------------------------------------------------- /webextension/data/options/matched.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/webextension/data/options/matched.js -------------------------------------------------------------------------------- /webextension/data/options/matched.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/webextension/data/options/matched.json -------------------------------------------------------------------------------- /webextension/data/report/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/webextension/data/report/index.css -------------------------------------------------------------------------------- /webextension/data/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/webextension/data/report/index.html -------------------------------------------------------------------------------- /webextension/data/report/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/webextension/data/report/index.js -------------------------------------------------------------------------------- /webextension/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-fray/Security-Plus/HEAD/webextension/manifest.json --------------------------------------------------------------------------------