Prototype - Inject new code in your websites

Test your ideas in real-time: Use Prototype to inject any stylesheet or javascript into your website.

Was ist Prototype - Inject new code in your websites?

Prototype - Inject new code in your websites ist eine Chrome-Erweiterung, die von Dennis Bücker entwickelt wurde, und ihr Hauptmerkmal ist "Test your ideas in real-time: Use Prototype to inject any stylesheet or javascript into your website.".

Erweiterungsscreenshots

screenshot

Prototype - Inject new code in your websites-Erweiterungs-CRX-Datei herunterladen

Laden Sie Prototype - Inject new code in your websites-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Prototype - Inject new code in your websites Prototype - Inject new code in your websites
ID fdgdeaiajeafamlgajlpgbejadaegepj
Offizielle URL https://chromewebstore.google.com/detail/prototype-inject-new-code/fdgdeaiajeafamlgajlpgbejadaegepj
Beschreibung Test your ideas in real-time: Use Prototype to inject any stylesheet or javascript into your website.
Dateigröße 144 KB
Installationsanzahl 153
Aktuelle Version 7.2
Letztes Update 2023-05-19
Veröffentlichungsdatum 2019-08-23
Bewertung 3.00/5 Insgesamt 1 Bewertungen
Entwickler Dennis Bücker
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/denbue/Prototype
Unterstützte Sprachen 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:\/\/*\/*"
    ]
}