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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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