Injecta

Inject JavaScript libraries into your current page.

Injecta là gì?

Injecta là một tiện ích mở rộng Chrome được phát triển bởi Ian Macalinao, và tính năng chính của nó là "Inject JavaScript libraries into your current page.".

Ả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 Injecta

Tải xuống các tệp mở rộng Injecta 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 JavaScript libraries into any webpage with the click of a button.

Have you ever wanted to make a request on a page through the Chrome Developer console? Maybe you wanted to scrape a table using jQuery. Maybe you wish you had access to Lodash/Underscore's powerful comprehensions. Maybe you wanted the date processing capabilities of Moment or the functional elegance of Ramda.

With Injecta, you can now do this without having to copy/paste scripts into the console. Injecta allows you to inject pre-defined JavaScript libraries directly into webpages to give you full control of your webpages.

Source: https://github.com/simplyianm/injecta                    

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

Tên Injecta Injecta
ID gbndgddgajcmkogjonkgbcempddcbmca
URL Chính Thức https://chrome.google.com/webstore/detail/injecta/gbndgddgajcmkogjonkgbcempddcbmca
Mô tả Inject JavaScript libraries into your current page.
Kích Thước Tệp 91.68 KB
Số Lần Cài Đặt 140
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2015-10-13
Ngày Phát Hành 2015-10-13
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Ian Macalinao
Loại Thanh Toán free
Trang Web Mở Rộng https://ian.pw
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Injecta",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "Inject JavaScript libraries into your current page.",
    "homepage_url": "https:\/\/ian.pw",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": {
            "19": "assets\/icon19.png",
            "38": "assets\/icon38.png"
        },
        "default_title": "Injecta",
        "default_popup": "popup.html"
    },
    "permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "tabs"
    ],
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    }
}