Console Injector

Easily inject javascript libraries from the console

Console Injector là gì?

Console Injector là một tiện ích mở rộng Chrome được phát triển bởi andrew.coenen, và tính năng chính của nó là "Easily inject javascript libraries from the console".

Ả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 Console Injector

Tải xuống các tệp mở rộng Console 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

                        Console injector allows easy injection of javascript scripts into any page from the console, using the following simple syntax:

console.inject('jquery');

This is very handy for quickly testing ideas in the console and rapidly injecting code into existing sites. Console Injector searches cdnjs for javascript libraries matching a given input string, and inserts the latest corresponding script hosted at cdnjs.cloudflare.com.

Console Injector is open source and located at https://github.com/cannoneyed/console-injector                    

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

Tên Console Injector Console Injector
ID abdfbnapkafgcheofcijaieahcbjnpkd
URL Chính Thức https://chromewebstore.google.com/detail/console-injector/abdfbnapkafgcheofcijaieahcbjnpkd
Mô tả Easily inject javascript libraries from the console
Kích Thước Tệp 20.4 KB
Số Lần Cài Đặt 1,289
Phiên Bản Hiện Tại 0.1.1
Cập Nhật Lần Cuối 2015-08-21
Ngày Phát Hành 2015-08-20
Đánh Giá 4.92/5 Tổng số 13 Đánh Giá
Nhà Phát Triển andrew.coenen
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Console Injector",
    "version": "0.1.1",
    "manifest_version": 2,
    "description": "Easily inject javascript libraries from the console",
    "homepage_url": "http:\/\/cannoneyed.github.io",
    "icons": {
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}