summary refs log tree commit diff
path: root/manifest.json
diff options
context:
space:
mode:
authorV <v@anomalous.eu>2022-05-17 15:46:46 +0200
committerV <v@anomalous.eu>2022-05-17 18:20:32 +0200
commitf2afbcee6c2d495ada2b140e1882e9482a3d640b (patch)
tree418b4f226196904fda250f2b9ad6ff93f9c40118 /manifest.json
downloadrefined-nixpkgs-0.1.tar.zst
Root commit v0.1
Here we go again! The initial release of a new extension.
Diffstat (limited to 'manifest.json')
-rw-r--r--manifest.json17
1 files changed, 17 insertions, 0 deletions
diff --git a/manifest.json b/manifest.json
new file mode 100644
index 0000000..1fd731c
--- /dev/null
+++ b/manifest.json
@@ -0,0 +1,17 @@
+{
+	"manifest_version": 2,
+
+	"name": "Refined Nixpkgs",
+	"version": "0.1",
+
+	"description": "Improve the experience for Nixpkgs maintainers",
+	"homepage_url": "https://anomalous.eu/projects/refined-nixpkgs",
+
+	"content_scripts": [
+		{
+			"matches": [ "https://github.com/NixOS/nixpkgs/pull/*" ],
+			"js": [ "content.js" ],
+			"run_at": "document_end"
+		}
+	]
+}