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
官方網址 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:\/\/*\/*"
    ]
}