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
Eメール [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:\/\/*\/*"
    ]
}