Change all GitHub repository and gist pages to be full width and dynamically sized.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Wide GitHub",
"description": "Change all GitHub repository and gist pages to be full width and dynamically sized.",
"version": "1.6.6",
"version_name": "1.6.6 MV3",
"icons": {
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"action": {
"default_icon": "icons/icon.png",
"default_title": "Toggle Wide GitHub"
},
"content_scripts": [
{
"matches": [
"https://github.com/*",
"https://gist.github.com/*"
],
"css": [
"wide-github.css"
],
"js": [
"wide-github-toggle.js"
]
}
],
"background": {
"service_worker": "background.js"
}
}