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.

30 lines
605 B

8 years ago
{
"name": "Github Custom Tab Size",
"version": "0.0.0",
8 years ago
"icons": {
"256": "icon.png"
},
8 years ago
"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,
8 years ago
"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"
]
}
]
8 years ago
}