summarylogtreecommitdiffstats
path: root/disable-x-frame-option-manifest.json
diff options
context:
space:
mode:
authorJulian Xhokaxhiu2016-09-27 15:57:58 +0200
committerJulian Xhokaxhiu2016-09-27 15:57:58 +0200
commitcf9ee355545cecf18f3346413a4c99667a5d8765 (patch)
treee754c98454a584492e5904a8f1468d7506b31036 /disable-x-frame-option-manifest.json
parent20c1bcfcc6d444e3c67821af7cda955c5841877f (diff)
downloadaur-cf9ee355545cecf18f3346413a4c99667a5d8765.tar.gz
Disable web security was not the right solution
In order to disable X-Frame-Option header security, we need to tackle this via an extension. So provide a way to automatically load it, every time the chromium process starts.
Diffstat (limited to 'disable-x-frame-option-manifest.json')
-rw-r--r--disable-x-frame-option-manifest.json10
1 files changed, 10 insertions, 0 deletions
diff --git a/disable-x-frame-option-manifest.json b/disable-x-frame-option-manifest.json
new file mode 100644
index 000000000000..8ec9201350a4
--- /dev/null
+++ b/disable-x-frame-option-manifest.json
@@ -0,0 +1,10 @@
+{
+ "name": "Ignore X-Frame headers",
+ "description": "Drops X-Frame-Options HTTP response headers, allowing all pages to be iframed.",
+ "version": "1.0",
+ "manifest_version": 2,
+ "background": {
+ "scripts": [ "background.js" ]
+ },
+ "permissions": [ "webRequest", "webRequestBlocking", "\u003Call_urls>" ]
+}