MSDN Resize
Add a divider between columns on MSDN for clickable resizing
Τι είναι το MSDN Resize;
Το MSDN Resize είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον InspectorStrunk, και η κύρια λειτουργία του είναι "Add a divider between columns on MSDN for clickable resizing".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης MSDN Resize
Λήψη αρχείων επέκτασης MSDN Resize σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Do you want to split your screen between documentation and source-code but too much of MSDN's real estate is dedicated to navigation? Do you find yourself wishing you could slide the navigation bar out of the way so that you can focus on content? MSDN Resize is a simple extension that allows the user to reduce the size of the side navigation bar and return it to normal with a click of the mouse. HOW DOES IT WORK? By adding a divider bar between the sidebar and the primary content of the page, all you have to do is click on the divider and instantly your content goes from 66% to 85% of the window. Click again to restore the original dimensions. Release Notes - 0.7 - This version is a temporary fix to account for the new MSDN theme chooser. The divider bar is now gray on all themes.
Βασικές Πληροφορίες Επέκτασης
Όνομα | MSDN Resize |
ID | bdcaffgeeafpmnpeogoipgfhklbppjlc |
Επίσημο URL | https://chromewebstore.google.com/detail/msdn-resize/bdcaffgeeafpmnpeogoipgfhklbppjlc |
Περιγραφή | Add a divider between columns on MSDN for clickable resizing |
Μέγεθος Αρχείου | 316 KB |
Αριθμός Εγκαταστάσεων | 29 |
Τρέχουσα Έκδοση | 0.7 |
Τελευταία Ενημέρωση | 2019-07-13 |
Ημερομηνία Δημοσίευσης | 2019-07-13 |
Αξιολόγηση | 5.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | InspectorStrunk |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/mycomycul/MSDNFix |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "MSDN Resize", "description": "Add a divider between columns on MSDN for clickable resizing", "version": "0.7", "content_scripts": [ { "matches": [ "https:\/\/docs.microsoft.com\/*", "http:\/\/docs.microsoft.com\/*" ], "js": [ "content.js" ] } ], "icons": { "16": "MSDNResize16.png", "32": "MSDNResize32.png", "48": "MSDNResize48.png", "128": "MSDNResize128.png" } } |