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.
 
 
 

51 lines
923 B

{
"name": "Refined GitHub",
"version": "0.0.0",
"description": "Simplifies the GitHub interface and adds useful features",
"homepage_url": "https://github.com/sindresorhus/refined-github",
"manifest_version": 2,
"minimum_chrome_version": "58",
"applications": {
"gecko": {
"id": "{a4c4eda4-fb84-4a84-b4a1-f7c1cbf2a1ad}",
"strict_min_version": "52.0"
}
},
"permissions": [
"storage",
"clipboardWrite"
],
"optional_permissions": [
"http://*/*",
"https://*/*"
],
"icons": {
"128": "icon.png"
},
"options_ui": {
"chrome_style": true,
"page": "options.html"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"https://github.com/*",
"https://gist.github.com/*"
],
"css": [
"content.css"
],
"js": [
"jquery-3.slim.min.js",
"content.js"
]
}
]
}