Skip to content

Commit

Permalink
feat(core): update extension to manifest v3
Browse files Browse the repository at this point in the history
LuisReinoso committed Oct 5, 2024
1 parent 2171d15 commit af3b1e0
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions extension/manifest.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
{
"manifest_version": 2,
"manifest_version": 3,
"name": "Git History Browser Extension",
"author": "Luis Reinoso",
"description": "Agrega un botón a github para ver el historial del archivo / Add a button to github to see the file history",
"homepage_url": "https://github.com/LuisReinoso/git-history-browser-extension",
"version": "1.0.8",
"content_scripts": [
{
"matches": ["https://github.com/*", "https://gitlab.com/*", "https://bitbucket.org/*"],
"matches": [
"https://github.com/*",
"https://gitlab.com/*",
"https://bitbucket.org/*"
],
"js": ["main.js"],
"run_at": "document_end"
}
@@ -17,5 +21,6 @@
"48": "icons/git-history-48x48.png",
"128": "icons/git-history-128x128.png",
"500": "icons/git-history-500x500.png"
}
},
"permissions": ["scripting"]
}

0 comments on commit af3b1e0

Please sign in to comment.