feat: added subdomains to whitelist #1

Merged
CodeByMrFinchum merged 2 commits from feat/subdomain into main 2025-04-10 10:57:50 +02:00
2 changed files with 6 additions and 1 deletions

5
CHANGELOG.md Normal file
View file

@ -0,0 +1,5 @@
# 1.1
- Added all subdomains from github to the whitelist. I.E. pages such as gist.github will now also be in light mode.
# 1.0
- Initial release.

View file

@ -8,7 +8,7 @@
},
"content_scripts": [
{
"matches": ["*://github.com/*"],
"matches": ["*://*.github.com/*"],
"js": ["content.js"]
}
],