Skip to content
This repository has been archived by the owner on Nov 22, 2024. It is now read-only.

Commit

Permalink
Swap manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
muan committed Mar 22, 2022
1 parent c765396 commit 7eb0248
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 9 deletions.
Binary file removed .DS_Store
Binary file not shown.
File renamed without changes.
19 changes: 19 additions & 0 deletions firefox/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"name": "Dashboard filter for GitHub",
"short_name": "dashboard",
"version": "0.8.3",
"manifest_version": 2,
"description": "This adds an activity filter menu to GitHub dashboard.",
"homepage_url": "http://github.com/muan/dashboard",
"permissions": [
"https://api.github.com/*"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"content_scripts": [
{
"matches": ["https://github.com/", "https://github.com/orgs/*/dashboard"],
"css": ["dashboard.css"],
"js": ["dashboard.js"]
}
]
}
27 changes: 18 additions & 9 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,27 @@
"name": "Dashboard filter for GitHub",
"short_name": "dashboard",
"version": "0.8.3",
"manifest_version": 2,
"manifest_version": 3,
"description": "This adds an activity filter menu to GitHub dashboard.",
"homepage_url": "http://github.com/muan/dashboard",
"permissions": [
"https://api.github.com/*"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"content_scripts": [
{
"matches": ["https://github.com/", "https://github.com/orgs/*/dashboard"],
"css": ["dashboard.css"],
"js": ["dashboard.js"]
"matches": [
"https://github.com/",
"https://github.com/orgs/*/dashboard"
],
"css": [
"dashboard.css"
],
"js": [
"dashboard.js"
]
}
],
"host_permissions": [
"https://api.github.com/*"
]
}
}

0 comments on commit 7eb0248

Please sign in to comment.