summary refs log tree commit diff
path: root/manifest.json
diff options
context:
space:
mode:
Diffstat (limited to 'manifest.json')
-rw-r--r--manifest.json21
1 files changed, 21 insertions, 0 deletions
diff --git a/manifest.json b/manifest.json
new file mode 100644
index 0000000..7411910
--- /dev/null
+++ b/manifest.json
@@ -0,0 +1,21 @@
+{
+	"manifest_version": 2,
+
+	"name": "[email protected]",
+	"version": "0.1",
+
+	"description": "Deobfuscate e-mail addresses \"protected\" by Cloudflare",
+
+	"icons": {
+		"48": "icon.svg",
+		"96": "icon.svg"
+	},
+
+	"content_scripts": [
+		{
+			"matches": [ "*://*/*" ],
+			"js": [ "content.js" ],
+			"run_at": "document_end"
+		}
+	]
+}