Skip to content

Commit

Permalink
Update manifest
Browse files Browse the repository at this point in the history
* Arranged match list by importance
* Reformatted JSON to match XPI content
* Bump version number for release
  • Loading branch information
rcowsill committed Sep 20, 2021
1 parent 1d5970d commit 0e05e78
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "SO Focused",
"version": "1.0",
"version": "1.1",
"description": "Hides the \"Hot Network Questions\" sidebar on StackOverflow and related sites.",
"author": "Rob Cowsill",
"homepage_url": "https://github.com/rcowsill/SO-Focused",
Expand All @@ -11,15 +11,17 @@
"content_scripts": [
{
"matches": [
"*://*.askubuntu.com/*",
"*://*.serverfault.com/*",
"*://*.stackapps.com/*",
"*://*.stackexchange.com/*",
"*://*.stackoverflow.com/*",
"*://*.superuser.com/*"
"*://*.stackexchange.com/*",
"*://*.superuser.com/*",
"*://*.serverfault.com/*",
"*://*.askubuntu.com/*",
"*://*.stackapps.com/*"
],
"run_at": "document_start",
"css": ["css/hide-hnq.css"]
"css": [
"css/hide-hnq.css"
]
}
]
}
}

0 comments on commit 0e05e78

Please sign in to comment.