Inject JS

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

O que é Inject JS?

Inject JS é uma extensão do Chrome desenvolvida por dailenspencer12, e sua principal característica é "This extension will inject javascript from a URL into the current webpage".

Baixar o arquivo CRX da Extensão Inject JS

Baixe arquivos de extensão Inject JS no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                                            

Informações Básicas da Extensão

Nome Inject JS Inject JS
ID ppbefedgpemhmbmiehiodeobnoekdhfo
URL Oficial https://chrome.google.com/webstore/detail/inject-js/ppbefedgpemhmbmiehiodeobnoekdhfo
Descrição This extension will inject javascript from a URL into the current webpage
Tamanho do Arquivo 40.14 KB
Contagem de Instalações 80
Versão Atual 1.1
Última Atualização 2016-09-29
Data de Publicação 2016-09-29
Desenvolvedor dailenspencer12
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}