Code Injector

Inject code snippets, scripts, HTML, CSS into selected DOM elements and see them render dynamically onto web pages.

Code Injector là gì?

Code Injector là một tiện ích mở rộng Chrome được phát triển bởi Melwyn Pawar, và tính năng chính của nó là "Inject code snippets, scripts, HTML, CSS into selected DOM elements and see them render dynamically onto web pages.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Code Injector

Tải xuống các tệp mở rộng Code Injector dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Inject code snippets, scripts, HTML, CSS into selected DOM elements and see them render dynamically onto web pages to make design and developmental decisions quickly.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Code Injector Code Injector
ID ffpbejkllpoglbeeabibelceofidjfhk
URL Chính Thức https://chrome.google.com/webstore/detail/code-injector/ffpbejkllpoglbeeabibelceofidjfhk
Mô tả Inject code snippets, scripts, HTML, CSS into selected DOM elements and see them render dynamically onto web pages.
Kích Thước Tệp 293 KB
Số Lần Cài Đặt 121
Phiên Bản Hiện Tại 1.4
Cập Nhật Lần Cuối 2017-12-21
Ngày Phát Hành 2017-12-21
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Melwyn Pawar
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "externally_connectable": {
        "matches": [
            "*:\/\/*.example.com\/*"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "allLibs.js"
            ],
            "matches": [
                ""
            ],
            "css": [
                "inject.css"
            ]
        }
    ],
    "description": "Inject code snippets, scripts, HTML, CSS into selected DOM elements and see them render dynamically onto web pages.",
    "icons": {
        "128": "l1.png",
        "16": "icon.png",
        "48": "l2.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Script Injector"
    },
    "web_accessible_resources": [
        "images\/pagebreak.png",
        "images\/pagebreak_alone.png"
    ],
    "manifest_version": 2,
    "name": "Code Injector",
    "permissions": [
        "tabs",
        "",
        "background"
    ],
    "version": "1.4"
}