Design Mode
Allows you to make temporary edits to any page.
Τι είναι το Design Mode;
Το Design Mode είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Bitquark, και η κύρια λειτουργία του είναι "Allows you to make temporary edits to any page.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Design Mode
Λήψη αρχείων επέκτασης Design Mode σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
New! Design Mode is a tiny extension which puts Chrome into edit mode, allowing you to edit entire pages as though you were in an HTML editor. This extension is great for quickly testing concepts, such as whether a page layout breaks when a heading hits a certain text length, or whether an image or button would look better on the other side of the page. ★ Move images by dragging them around. ★ Edit existing text by clicking and typing. ★ Add new text before or after existing elements. ★ Change font style using standard keys (ctrl+b for bold, etc) This extension is not designed as a hardcore development tool and is limited by Chrome's implementation of design mode. Changes are temporary; reloading the page will clear any changes. Tips: ☛ You can make a single HTML element editable by adding the "contenteditable" attribute. ☛ You can activate design mode by hand by opening up the development console (F12) and typing: document.designMode = 'on'; Of course, that's more work and you don't get the nice icon telling you which tabs are in design mode. You need a cool extension for that, right? ;-)
Βασικές Πληροφορίες Επέκτασης
Όνομα | Design Mode |
ID | kcohlfofdggbjmbjoiopaddbjjblgnkl |
Επίσημο URL | https://chromewebstore.google.com/detail/design-mode/kcohlfofdggbjmbjoiopaddbjjblgnkl |
Περιγραφή | Allows you to make temporary edits to any page. |
Μέγεθος Αρχείου | 7.97 KB |
Αριθμός Εγκαταστάσεων | 5,005 |
Τρέχουσα Έκδοση | 0.2 |
Τελευταία Ενημέρωση | 2012-08-28 |
Ημερομηνία Δημοσίευσης | 2012-08-28 |
Αξιολόγηση | 3.65/5 Συνολικά 17 Αξιολογήσεις |
Προγραμματιστής | Bitquark |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en-GB |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "Design Mode", "version": "0.2", "manifest_version": 2, "description": "Allows you to make temporary edits to any page.", "icons": { "16": "img\/icon_16.png", "48": "img\/icon_48.png", "128": "img\/icon_128.png" }, "browser_action": { "default_icon": "img\/icon_19.png", "default_title": "Design Mode: off" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "js\/content.js" ] } ], "background": { "scripts": [ "js\/background.js" ] } } |