Skip to content

Commit

Permalink
Bump to 1.1.27
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonlong committed Nov 3, 2023
1 parent 7d97aa9 commit 82b4d1d
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 37 deletions.
26 changes: 6 additions & 20 deletions src/manifest-v2.json
@@ -1,31 +1,17 @@
{
"manifest_version": 2,
"name": "GitHub Isometric Contributions",
"version": "1.1.26",
"version": "1.1.27",
"description": "Renders an isometric pixel view of GitHub contribution graphs.",
"content_scripts": [
{
"css": [
"iso.css"
],
"js": [
"obelisk.min.js",
"iso.js"
],
"matches": [
"https://github.com/*"
]
"css": ["iso.css"],
"js": ["obelisk.min.js", "iso.js"],
"matches": ["https://github.com/*"]
}
],
"permissions": [
"storage",
"contextMenus",
"activeTab"
],
"optional_permissions": [
"http://*/*",
"https://*/*"
],
"permissions": ["storage", "contextMenus", "activeTab"],
"optional_permissions": ["http://*/*", "https://*/*"],
"icons": {
"48": "icon-48.png",
"128": "icon-128.png"
Expand Down
28 changes: 11 additions & 17 deletions src/manifest.json
@@ -1,30 +1,24 @@
{
"manifest_version": 3,
"name": "GitHub Isometric Contributions",
"version": "1.1.26",
"version": "1.1.27",
"description": "Renders an isometric pixel view of GitHub contribution graphs.",
"content_scripts": [
{
"css": [
"iso.css"
],
"js": [
"obelisk.min.js",
"iso.js"
],
"matches": [
"https://github.com/*"
]
"css": ["iso.css"],
"js": ["obelisk.min.js", "iso.js"],
"matches": ["https://github.com/*"]
}
],
"permissions": [
"storage"
],
"host_permissions": [
"https://github.com/"
],
"permissions": ["storage"],
"host_permissions": ["https://github.com/"],
"icons": {
"48": "icon-48.png",
"128": "icon-128.png"
},
"browser_specific_settings": {
"gecko": {
"id": "isometric-contributions@jasonlong.me"
}
}
}

0 comments on commit 82b4d1d

Please sign in to comment.