Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Better GitHub Home Page",
"version": "1.0.2",
"description": "Replaces the GitHub home page with a grid of repositories and a search bar while keeping the existing sidebar and navbar.",
"icons": {
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/",
"https:\/\/github.com\/dashboard",
"https:\/\/github.com\/dashboard\/*"
],
"js": [
"scripts\/content.js"
],
"css": [
"styles\/content.css"
],
"run_at": "document_idle"
}
],
"permissions": [
"storage"
],
"host_permissions": [
"https:\/\/github.com\/*"
]
}