Mercurial > personal > no-gemini
comparison extension/manifest.json @ 0:4802c0568c26
Initial version of extension.
author | Paul Fisher <paul@pfish.zone> |
---|---|
date | Tue, 24 Sep 2024 19:26:31 -0400 |
parents | |
children | eadd1318ddd6 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:4802c0568c26 |
---|---|
1 { | |
2 "manifest_version": 3, | |
3 "name": "Hide Gemini", | |
4 "version": "0.1", | |
5 "icons": { | |
6 "16": "icons/16.png", | |
7 "32": "icons/32.png", | |
8 "64": "icons/64.png", | |
9 "128": "icons/128.png", | |
10 "256": "icons/256.png" | |
11 }, | |
12 "description": "Hides Gemini elements from Google properties.", | |
13 "content_scripts": [ | |
14 { | |
15 "css": ["css/docs.css"], | |
16 "matches": [ | |
17 "https://docs.google.com/document/d/*", | |
18 "https://docs.google.com/presentation/d/*", | |
19 "https://docs.google.com/spreadsheets/d/*" | |
20 ] | |
21 }, | |
22 { | |
23 "css": ["css/drive.css"], | |
24 "matches": ["https://drive.google.com/drive/*"] | |
25 }, | |
26 { | |
27 "css": ["css/mail.css"], | |
28 "matches": ["https://mail.google.com/mail/*"] | |
29 } | |
30 ] | |
31 } |