# HG changeset patch # User Paul Fisher # Date 1727484942 14400 # Node ID eadd1318ddd69b5ee4a08076eeb1bd2431c7cf9a # Parent 4802c0568c26435bd3a33607c129897ca0da9cd1 Add Drive file pages + build script. diff -r 4802c0568c26 -r eadd1318ddd6 .hgignore --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.hgignore Fri Sep 27 20:55:42 2024 -0400 @@ -0,0 +1,2 @@ +syntax: glob +hide-gemini-*.zip diff -r 4802c0568c26 -r eadd1318ddd6 build.ps1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/build.ps1 Fri Sep 27 20:55:42 2024 -0400 @@ -0,0 +1,2 @@ +$version = (Get-Content .\extension\manifest.json | ConvertFrom-Json).version +Compress-Archive -Path ".\extension\*" -DestinationPath "hide-gemini-$($version).zip" -Force diff -r 4802c0568c26 -r eadd1318ddd6 extension/css/drive.css --- a/extension/css/drive.css Tue Sep 24 19:26:31 2024 -0400 +++ b/extension/css/drive.css Fri Sep 27 20:55:42 2024 -0400 @@ -1,3 +1,4 @@ -/* top toolbar */ #WWNEkf { +/* top toolbar */ #WWNEkf, +/* in-file toolbar (e.g., opened PDF) */ #viewer-sidekick-button { display: none !important; } diff -r 4802c0568c26 -r eadd1318ddd6 extension/manifest.json --- a/extension/manifest.json Tue Sep 24 19:26:31 2024 -0400 +++ b/extension/manifest.json Fri Sep 27 20:55:42 2024 -0400 @@ -1,7 +1,7 @@ { "manifest_version": 3, "name": "Hide Gemini", - "version": "0.1", + "version": "0.2", "icons": { "16": "icons/16.png", "32": "icons/32.png", @@ -21,7 +21,10 @@ }, { "css": ["css/drive.css"], - "matches": ["https://drive.google.com/drive/*"] + "matches": [ + "https://drive.google.com/drive/*", + "https://drive.google.com/file/d/*" + ] }, { "css": ["css/mail.css"],