Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 15 additions & 5 deletions browser-extension/manifest.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,24 @@
{
"manifest_version": 2,
"manifest_version": 3,

"name": "Starfix",
"version": "1.1",
"description": "Extension for Starfix. Adds an \"Open in IDE\" button on Github. Supports easy switching b/w cloning Protocols viz HTTPS and SSH",
"description": "Extension for Starfix. Adds an \"Open in IDE\" button on Github. Supports easy switching b/w cloning Protocols viz HTTPS and SSH",
"author": "Fahad Israr",
"icons": { "16": "starfix_icon.png",
"icons": {
"16": "starfix_icon.png",
"32": "starfix_icon.png",
"48": "starfix_icon.png" },
"browser_action": { "default_popup": "./options.html","default_title": "Starfix Configuration","default_icon":"./starfix_icon.png" },
"48": "starfix_icon.png"
},
"action": {
"default_popup": "./options.html",
"default_title": "Starfix Configuration",
"default_icon": {
"16": "starfix_icon.png",
"32": "starfix_icon.png",
"48": "starfix_icon.png"
}
},
"options_ui": {
"page": "options.html",
"open_in_tab": false
Expand Down