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是由Dennis Bücker开发的Chrome扩展程序,该扩展的主要功能是“Test your ideas in real-time: Use Prototype to inject any stylesheet or javascript into your website.”。

扩展截图

screenshot

下载Prototype - Inject new code in your websites扩展crx文件

下载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 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:\/\/*\/*"
    ]
}