diff options
author | Teddy Wing | 2018-08-04 01:46:04 +0200 |
---|---|---|
committer | Teddy Wing | 2018-08-04 01:47:00 +0200 |
commit | b4c0afa040cd36152078aa269e7e12e123552707 (patch) | |
tree | d5db3e78eee796a9589d78c1c605cd39e02723cc /manifest.json | |
download | Legibility-b4c0afa040cd36152078aa269e7e12e123552707.tar.bz2 |
Add manifest.json
A basic WebExtension manifest file.
Diffstat (limited to 'manifest.json')
-rw-r--r-- | manifest.json | 14 |
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" + ] +} |