From fb021e2cf43da42bfef11ebaa781388f1bb7613f Mon Sep 17 00:00:00 2001 From: V Date: Fri, 14 Aug 2020 23:43:30 +0200 Subject: Initial release (from .xpi) --- manifest.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 manifest.json (limited to 'manifest.json') 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" + } + ] +} -- cgit 1.4.1