File tree Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ Version must be kept in-sync between [`package.json`](package.json) and [`wxt.co
7
7
## [ Unreleased]
8
8
### Fixed
9
9
- Appending to GitHub issues was not being enhanced, now fixed. ([ #105 ] ( https://github.com/diffplug/gitcasso/issues/105 ) )
10
+ - Reduced unnecessary permissions (no need for ` host_permissions ` )
10
11
11
12
## [ 1.0.0] - 2025-10-02
12
13
- Fix html escaping inside single-tick and double-tick code blocks.
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ export default defineContentScript({
55
55
"handlers"
56
56
)
57
57
} ,
58
- matches : [ "<all_urls> " ] ,
58
+ matches : [ "https://*/*" , "http://*/* "] ,
59
59
runAt : "document_end" ,
60
60
} )
61
61
Original file line number Diff line number Diff line change @@ -7,8 +7,6 @@ export default defineConfig({
7
7
manifest : {
8
8
description :
9
9
"Syntax highlighting and autosave for comments on GitHub (and other markdown-friendly websites)." ,
10
- host_permissions : [ "https://github.com/*" ] ,
11
- optional_host_permissions : [ "https://*/*" , "http://*/*" ] ,
12
10
icons : {
13
11
16 : "/icons/icon-16.png" ,
14
12
48 : "/icons/icon-48.png" ,
You can’t perform that action at this time.
0 commit comments