This commit is contained in:
2026-01-20 20:24:13 -07:00
commit 885280cf37
5 changed files with 62 additions and 0 deletions

4
extension/inject.css Normal file
View File

@@ -0,0 +1,4 @@
@page {
margin: 0;
}

13
extension/manifest.json Normal file
View File

@@ -0,0 +1,13 @@
{
"name": "Print CSS",
"description": "Change the default print css for pages",
"version": "1.0",
"manifest_version": 3,
"content_scripts": [
{
"matches": ["<all_urls>"],
"css" : ["inject.css"]
}
]
}