Prototype - Inject new code in your websites
Test your ideas in real-time: Use Prototype to inject any stylesheet or javascript into your website.
Τι είναι το Prototype - Inject new code in your websites;
Το Prototype - Inject new code in your websites είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Dennis Bücker, και η κύρια λειτουργία του είναι "Test your ideas in real-time: Use Prototype to inject any stylesheet or javascript into your website.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Prototype - Inject new code in your websites
Λήψη αρχείων επέκτασης Prototype - Inject new code in your websites σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Prototyper injects any hosted stylesheets (CSS) or javascript (JS) file into any webpage. It also modifies the HTTP headers to allow for full prototyping power. You can use the extension for your own prototyping or to share prototypes. The extension saves your options even when you restart the browser or change the code. Installation - After installing the extension, right-click on the extension icon and select "Options". Features - Specify any hosted CSS or JS file to inject (local files must be hosted under http://localhost/ - security restriction of Chrome) - It modifies HTTP headers for full prototyping power. - You can use the extension for your own prototyping or for others to test your prototype. - The extension saves your options even when you restart the browser or change the code. Find more information on the extension's website.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Prototype - Inject new code in your websites |
ID | fdgdeaiajeafamlgajlpgbejadaegepj |
Επίσημο URL | https://chromewebstore.google.com/detail/prototype-inject-new-code/fdgdeaiajeafamlgajlpgbejadaegepj |
Περιγραφή | Test your ideas in real-time: Use Prototype to inject any stylesheet or javascript into your website. |
Μέγεθος Αρχείου | 144 KB |
Αριθμός Εγκαταστάσεων | 153 |
Τρέχουσα Έκδοση | 7.2 |
Τελευταία Ενημέρωση | 2023-05-19 |
Ημερομηνία Δημοσίευσης | 2019-08-23 |
Αξιολόγηση | 3.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | Dennis Bücker |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/denbue/Prototype |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Prototype - Inject new code in your websites", "version": "7.2", "description": "Test your ideas in real-time: Use Prototype to inject any stylesheet or javascript into your website.", "homepage_url": "https:\/\/github.com\/denbue\/Prototype", "browser_action": { "default_title": "Prototype", "default_icon": "images\/icon128.png" }, "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "options_page": "options.html", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "load.js" ] } ], "permissions": [ "webRequest", "webRequestBlocking", "http:\/\/*\/*", "https:\/\/*\/*" ] } |