Skip to content

Commit

Permalink
manifest: replaced old icons paths
Browse files Browse the repository at this point in the history
  • Loading branch information
AmraniCh committed Feb 8, 2024
1 parent 2750b44 commit ae9908c
Showing 1 changed file with 15 additions and 9 deletions.
24 changes: 15 additions & 9 deletions src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,32 @@
"name": "Github Code Font Changer",
"description": "Change and customize the boring GitHub code viewer font",
"version": "2.2",
"icons": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
"icons": {
"16": "images/logo/V2/icon16.png",
"48": "images/logo/V2/icon48.png",
"128": "images/logo/V2/icon128.png"
},
"browser_action": {
"default_popup": "popup.html"
},
"background": {
"scripts": ["background.js"]
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": ["https://*.github.com/*"],
"matches": [
"https://*.github.com/*"
],
"run_at": "document_idle",
"js": ["content.js"]
"js": [
"content.js"
]
}
],
"permissions": [
"storage",
"storage",
"https://*.github.com/*"
]
}
}

0 comments on commit ae9908c

Please sign in to comment.