Gridman - front-end toolkit
Swiss army knife for front-end developers
Τι είναι το Gridman - front-end toolkit;
Το Gridman - front-end toolkit είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://fenvox.com, και η κύρια λειτουργία του είναι "Swiss army knife for front-end developers".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Gridman - front-end toolkit
Λήψη αρχείων επέκτασης Gridman - front-end toolkit σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Gridman is the must-have Chrome extension for every front-end developer. This toolkit is crafted to boost your productivity and enhance your coding experience. DOM INSPECTION Instantly inspect DOM elements. Just hover to reveal details of the target and its parent elements, simplifying your analysis and debugging process. PERSISTENT Gridman uniquely persists between host reloads. Click on an element, and maintain your insights even after a page refresh, saving you valuable time and effort. TAILWIND Tailwind developers, rejoice! Easily inspect class sets and see how Tailwind CSS is bringing your designs to life. LAYOUTS Whether you're working with CSS Grid or Flexbox, Gridman displays rows, columns, paddings, margins, and more. Understand and manipulate complex layouts with ease. ANYWHERE Simply click the extension icon to activate this toolkit on any webpage. HOVER Unveil the intricacies of the DOM structure with a mere mouse hover. Visualize and understand how elements are nested and related. JOIN With Gridman you're not just using a tool; you're upgrading your entire development process. Download now and experience a revolution in your front-end development journey! REVIEW Your experience with Gridman matters to me deeply. If you've found it helpful, I'd be incredibly grateful if you could take a moment to share your thoughts in a review. Your feedback not only helps to improve but also assists fellow developers in discovering the benefits of this extension. Thank you for your support and for being a vital part of Gridman supporters! NOT WORKING If something didn't work as expected, I kindly request that you consider reaching out with any questions or issues you might have. I understand that each review, whether positive or negative, offers me an opportunity to learn and improve. However, I also believe in the importance of understanding and resolving any issues through communication. Please feel free to ask me anything at: https://fenvox.com/gridman#ask-section. I'm always here to assist you! LOCAL FILES You are trying it towards local file like 'file:///...' - but nothing shows up? > ANSWER: Gridman , like any chrome extension, will not work on local files. Chrome is not allowing it due to security reasons. And it is correct. You can imagine implications if any chrome extension would be able to access file system on your computer. To use Gridman on local files i'd recommend a tiny http-server which you can get here https://www.npmjs.com/package/http-server
Βασικές Πληροφορίες Επέκτασης
Όνομα | Gridman - front-end toolkit |
ID | cmplbmppmfboedgkkelpkfgaakabpicn |
Επίσημο URL | https://chromewebstore.google.com/detail/gridman-front-end-toolkit/cmplbmppmfboedgkkelpkfgaakabpicn |
Περιγραφή | Swiss army knife for front-end developers |
Μέγεθος Αρχείου | 871 KB |
Αριθμός Εγκαταστάσεων | 14,106 |
Τρέχουσα Έκδοση | 2.3.2 |
Τελευταία Ενημέρωση | 2024-01-22 |
Ημερομηνία Δημοσίευσης | 2020-05-18 |
Αξιολόγηση | 3.57/5 Συνολικά 54 Αξιολογήσεις |
Προγραμματιστής | https://fenvox.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://fenvox.com/gridman |
Διεύθυνση URL της Σελίδας Βοήθειας | https://fenvox.com/gridman#ask-section |
URL της Σελίδας Πολιτικής Απορρήτου | https://fenvox.com/privacy |
Υποστηριζόμενες Γλώσσες | id,ms,de,en,en-GB,en-US,fil,fr,sw,nl,no,vi,tr,ca,da,et,es,es-419,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,iw,fa,mr,hi,bn,gu,ta,te,kn-IN,ml,th,am-ET,ar,zh-CN,zh-TW,ja,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_name__", "description": "__MSG_description__", "version": "2.3.2", "manifest_version": 3, "homepage_url": "https:\/\/fenvox.com\/gridman", "default_locale": "en", "icons": { "16": "icon\/icon-gridman-16.png", "32": "icon\/icon-gridman-32.png", "48": "icon\/icon-gridman-48.png", "96": "icon\/icon-gridman-96.png", "128": "icon\/icon-gridman-128.png" }, "action": { "default_title": "Start Gridman" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "exclude_matches": [ "*:\/\/*.youtube.com\/*", "*:\/\/*.youtu.be\/*" ], "js": [ "src\/inject\/main.js" ] } ], "permissions": [ "activeTab", "contextMenus", "storage" ], "web_accessible_resources": [ { "resources": [ "\/fonts\/*", "\/icon\/*" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "background": { "service_worker": "src\/service-workers\/index.js", "type": "module" } } |