view 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
line wrap: on
line source

{
    "manifest_version": 3,
    "name": "Hide Gemini",
    "version": "0.1",
    "icons": {
        "16": "icons/16.png",
        "32": "icons/32.png",
        "64": "icons/64.png",
        "128": "icons/128.png",
        "256": "icons/256.png"
    },
    "description": "Hides Gemini elements from Google properties.",
    "content_scripts": [
        {
            "css": ["css/docs.css"],
            "matches": [
                "https://docs.google.com/document/d/*",
                "https://docs.google.com/presentation/d/*",
                "https://docs.google.com/spreadsheets/d/*"
            ]
        },
        {
            "css": ["css/drive.css"],
            "matches": ["https://drive.google.com/drive/*"]
        },
        {
            "css": ["css/mail.css"],
            "matches": ["https://mail.google.com/mail/*"]
        }
    ]
}