aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2018-08-04 01:46:04 +0200
committerTeddy Wing2018-08-04 01:47:00 +0200
commitb4c0afa040cd36152078aa269e7e12e123552707 (patch)
treed5db3e78eee796a9589d78c1c605cd39e02723cc
downloadLegibility-b4c0afa040cd36152078aa269e7e12e123552707.tar.bz2
Add manifest.json
A basic WebExtension manifest file.
-rw-r--r--manifest.json14
1 files changed, 14 insertions, 0 deletions
diff --git a/manifest.json b/manifest.json
new file mode 100644
index 0000000..fae4553
--- /dev/null
+++ b/manifest.json
@@ -0,0 +1,14 @@
+{
+ "manifest_version": 2,
+ "name": "Legibility",
+ "description": "Apply custom CSS to web pages.",
+ "version": "0.0.1",
+
+ "background": {
+ "scripts": ["background.js"]
+ },
+
+ "permissions": [
+ "activeTab"
+ ]
+}