Inject JS

This extension will inject javascript from a URL into the current webpage

Co to jest Inject JS?

Inject JS to rozszerzenie Chrome opracowane przez dailenspencer12, a jego główną funkcją jest „This extension will inject javascript from a URL into the current webpage”.

Pobierz plik CRX rozszerzenia Inject JS

Pobierz pliki rozszerzeń Inject JS w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                                            

Podstawowe informacje o rozszerzeniu

Nazwa Inject JS Inject JS
ID ppbefedgpemhmbmiehiodeobnoekdhfo
Oficjalny URL https://chrome.google.com/webstore/detail/inject-js/ppbefedgpemhmbmiehiodeobnoekdhfo
Opis This extension will inject javascript from a URL into the current webpage
Rozmiar pliku 40.14 KB
Liczba instalacji 80
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2016-09-29
Data Publikacji 2016-09-29
Deweloper dailenspencer12
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Inject JS",
    "description": "This extension will inject javascript from a URL into the current webpage",
    "version": "1.1",
    "browser_action": {
        "default_icon": "rocket.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.google.com\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "jquery.min.js",
                "popup.js"
            ]
        }
    ],
    "icons": {
        "128": "rocket128.png"
    },
    "permissions": [
        "activeTab"
    ]
}