summary refs log tree commit diff
path: root/manifest.json
diff options
context:
space:
mode:
authorV <v@anomalous.eu>2020-08-14 23:43:30 +0200
committerV <v@anomalous.eu>2020-08-14 23:43:30 +0200
commitfb021e2cf43da42bfef11ebaa781388f1bb7613f (patch)
tree46c7d2daa3b761e14618c634259433693391d2a7 /manifest.json
downloademail-protected-fb021e2cf43da42bfef11ebaa781388f1bb7613f.tar.zst
Initial release (from .xpi) v0.1
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"
+		}
+	]
+}