Old Github UI
GitHub changed their UI on 2020-06-23, this extension brings a few items back to their classic look.
Vad är Old Github UI?
Old Github UI är en Chrome-tillägg utvecklad av Sreenivasan Ramesh, och dess huvudfunktion är "GitHub changed their UI on 2020-06-23, this extension brings a few items back to their classic look.".
Tilläggsskärmbilder
Ladda ner Old Github UI-förlängningens CRX-fil
Ladda ner Old Github UI-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Get back the old Github User Interface. This extension moves the new sidebar back to the top, and makes the layout similar to the old user interface.
Grundläggande Information om Tillägg
Namn | Old Github UI |
ID | dhifdlfedboijpanpblghhhakpnncadb |
Officiell webbadress | https://chromewebstore.google.com/detail/old-github-ui/dhifdlfedboijpanpblghhhakpnncadb |
Beskrivning | GitHub changed their UI on 2020-06-23, this extension brings a few items back to their classic look. |
Filstorlek | 13.42 KB |
Antal Installationer | 292 |
Aktuell Version | 2.3 |
Senast Uppdaterad | 2020-06-29 |
Publiceringsdatum | 2020-06-29 |
Betyg | 3.83/5 Totalt 6 Betyg |
Utvecklare | Sreenivasan Ramesh |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/sreenivasanramesh/old-github-ui |
Hjälpsida URL | https://github.com/sreenivasanramesh/old-github-ui |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Old Github UI", "version": "2.3", "manifest_version": 2, "description": "GitHub changed their UI on 2020-06-23, this extension brings a few items back to their classic look.", "icons": { "16": "icons\/icon-16.png", "32": "icons\/icon-32.png", "48": "icons\/icon-48.png", "128": "icons\/icon-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*", "https:\/\/gist.gihub.com\/*" ], "css": [ "headers.css" ], "run_at": "document_start" }, { "matches": [ "https:\/\/github.com\/*\/*" ], "exclude_globs": [ "https:\/\/github.com\/*\/*\/settings*", "https:\/\/github.com\/*\/*\/community*" ], "css": [ "repo-content.css" ], "run_at": "document_start" } ] } |