Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{
"manifest_version": 2,
"name": "Wider Github",
"version": "0.1.1",
"version": "0.1.2",

"description": "Maximize your screen size when looking at codes on Github. This extension is not affiliated with Github.",
"description": "Maximize your screen size when looking at codes on Github and minimizes filename truncation. This extension is not affiliated with Github.",

"browser_action":{
"default_icon":"github48.png",
"default_title": "Wider Github"
},

"icons": {
"icons": {
"16": "github16.png",
"48": "github48.png",
"128": "github128.png"
"128": "github128.png"
},

"permissions":[
Expand All @@ -27,4 +27,4 @@
"persistent": false
}

}
}
14 changes: 6 additions & 8 deletions regular.css
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
/* Code View */

#js-repo-pjax-container{
width: 920px;
left: initial;
margin: initial;
position: initial;
body.full-width div.container, body.full-width div.container-lg, body.split-diff div.container, body.split-diff div.container-lg {
padding-left: 20px;
padding-right: 20px;
}

/* Gist */
Expand All @@ -28,12 +26,12 @@ div.column{

/* Pull Request */

div.file .meta .info .css-truncate-target {
a.css-truncate.css-truncate-target, a.css-truncate .css-truncate-target {
max-width: 600px;
}
div.file .meta .info {
div.file-info {
width: initial;

}
div.site-footer, div#all_commit_comments, div.thread-subscription-status {
visibility: initial;
}
18 changes: 8 additions & 10 deletions widen.css
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
/* Code View */

#js-repo-pjax-container{
width: 94%;
left: 0px;
margin: 0px 3%;
position: absolute;
body.full-width div.container, body.full-width div.container-lg, body.split-diff div.container, body.split-diff div.container-lg {
padding-left: 10px;
padding-right: 10px;
}

/* Gist */
Expand All @@ -27,12 +25,12 @@ div.column{

/* Pull Request */

div.file .meta .info .css-truncate-target {
max-width: 85%;
a.css-truncate.css-truncate-target, a.css-truncate .css-truncate-target {
max-width: 85%!important;
}
div.file-info {
width: 80%;
}
div.file .meta .info {
width: 90%;

div.site-footer, div#all_commit_comments, div.thread-subscription-status {
visibility: hidden;
}