You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

29 lines
605 B

{
"name": "GitHub Custom Tab Size",
"version": "1.0.3",
"icons": {
"256": "icon.png"
},
"description": "Make tab indented code more readable by allowing you to set a custom tab size",
"homepage_url": "https://github.com/lukechilds/github-custom-tab-size",
"manifest_version": 2,
"minimum_chrome_version": "36",
"browser_action": {
"default_popup": "src/popup.html"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"https://github.com/*/*",
"https://gist.github.com/*/*"
],
"js": [
"src/content.js"
]
}
]
}