Code Injector

Inject code into websites! (JavaScript, CSS, HTML and Files)

Code Injector là gì?

Code Injector là một tiện ích mở rộng Chrome được phát triển bởi Urmil Parikh, và tính năng chính của nó là "Inject code into websites! (JavaScript, CSS, HTML and Files)".

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

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

                        A WebExtensions based addon which let the user inject code into the websites. A very handy tool for developers and for automation.

This extension allows you to inject custom JavaScript code, custom CSS or even custom HTML to any web page.

Use it to customize appearance of a page, to auto-fill / auto-click forms on a page or to get rid of selective elements (e.g. advertisements) from a page. Get the control back on your browsing experience.

Backup / restore or share your rules using import/export feature (from Options).

Source code for this extension is available in GitHub, original work by L.Sabatelli.                    

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

Tên Code Injector Code Injector
ID jgcallaoodbhagkaoobenaabockcejmc
URL Chính Thức https://chrome.google.com/webstore/detail/code-injector/jgcallaoodbhagkaoobenaabockcejmc
Mô tả Inject code into websites! (JavaScript, CSS, HTML and Files)
Kích Thước Tệp 1.83 MB
Số Lần Cài Đặt 2,000
Phiên Bản Hiện Tại 0.3.2
Cập Nhật Lần Cuối 2020-02-25
Ngày Phát Hành 2020-02-25
Đánh Giá 5.00/5 Tổng số 8 Đánh Giá
Nhà Phát Triển Urmil Parikh
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/urmilparikh/Code-Injector
URL Trang Trợ Giúp https://github.com/urmilparikh/Code-Injector#quick-start
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Code Injector",
    "version": "0.3.2",
    "author": "L.Sabatelli",
    "description": "Inject code into websites! (JavaScript, CSS, HTML and Files)",
    "permissions": [
        "",
        "tabs",
        "activeTab",
        "storage",
        "webNavigation"
    ],
    "icons": {
        "16": "style\/images\/icon\/icon-16px.png",
        "24": "style\/images\/icon\/icon-24px.png",
        "32": "style\/images\/icon\/icon-32px.png",
        "48": "style\/images\/icon\/icon-48px.png",
        "64": "style\/images\/icon\/icon-64px.png",
        "96": "style\/images\/icon\/icon-96px.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "style\/images\/icon\/icon-16px.png",
            "24": "style\/images\/icon\/icon-24px.png",
            "32": "style\/images\/icon\/icon-32px.png",
            "48": "style\/images\/icon\/icon-48px.png",
            "64": "style\/images\/icon\/icon-64px.png",
            "96": "style\/images\/icon\/icon-96px.png"
        },
        "default_title": "Code Injector",
        "default_popup": "html\/browser-action.html"
    },
    "background": {
        "scripts": [
            "script\/browser-polyfill.min.js",
            "script\/background.js"
        ]
    },
    "options_ui": {
        "page": "html\/options-ui.html"
    }
}