├── manifest.json ├── style.css └── README.md /manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "manifest_version": 2, 3 | "name": "GitHub™ Daybreak", 4 | "description": "leave these new dark ages behind.", 5 | "version": "1.0", 6 | "content_scripts": [ 7 | { 8 | "matches": ["https://*.github.com/*"], 9 | "css": ["style.css"] 10 | } 11 | ], 12 | "permissions": [ 13 | "activeTab" 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | .header { 2 | background-color: #f5f5f5 !important; 3 | border-bottom: 1px solid #e5e5e5 !important; 4 | } 5 | 6 | .header .header-logo-wordmark, 7 | .header .header-logo-invertocat, 8 | .header .header-nav-link { 9 | color: #555 !important; 10 | } 11 | .header .header-nav-link:hover .dropdown-caret, 12 | .header .header-nav-link:focus .dropdown-caret { 13 | border-top-color: #4078c0 !important; 14 | } 15 | 16 | .header .header-search-wrapper { 17 | background-color: #fff !important; 18 | box-shadow: inset 0 1px 2px rgba(0,0,0,0.075) !important; 19 | border: 1px solid #ddd !important; 20 | color: #333 !important; 21 | } 22 | 23 | .header .header-search-scope { 24 | color: #767676 !important; 25 | border-right: 1px solid #eee !important; 26 | } 27 | 28 | .header .notification-indicator .mail-status { 29 | border: 2px solid #f3f3f3; 30 | } 31 | 32 | ::-webkit-input-placeholder { color:#999 !important; } 33 | ::-moz-placeholder { color:#999 !important; } 34 | :-ms-input-placeholder { color:#999 !important; } 35 | ::placeholder { color:#999 !important; } 36 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## GitHub™ daybreak 2 | 3 | leave these new dark ages behind. 4 | 5 | #### before: 6 | 7 | 8 | 9 | #### after: 10 | 11 | 12 | 13 | ### installation 14 | 15 | 1. clone this repo somewhere on your computer 16 | 2. navigate to chrome://extensions/ 17 | 4. ensure developer mode is enabled: 18 | 19 | 3. load unpacked extension... 20 | 21 | 4. navigate to where you cloned 22 | 5. click select 23 | 6. rejoice! 24 | 25 | ### caveats 26 | 27 | this prompt: 28 | 29 | (click cancel :smirk:) 30 | 31 | ### notes 32 | 33 | check the sauce (this is just some css) 34 | if you're already using something like Stylebot, you can copy+paste the css there 35 | left a content.js for posterity... js one-liner is nice, but it blips! 36 | i might have missed a thing, if so open an issue 37 | pull requests welcomed! 38 | this might be configurable from github, but I can't see where? :eyes: 39 | probably works in other browsers? 40 | --------------------------------------------------------------------------------