From f2afbcee6c2d495ada2b140e1882e9482a3d640b Mon Sep 17 00:00:00 2001 From: V Date: Tue, 17 May 2022 15:46:46 +0200 Subject: Root commit Here we go again! The initial release of a new extension. --- manifest.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 manifest.json (limited to 'manifest.json') 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" + } + ] +} -- cgit 1.4.1