Javascript Injector

Inject javascript to the webpage you are visiting

O que é Javascript Injector?

Javascript Injector é uma extensão do Chrome desenvolvida por Daniel Han, e sua principal característica é "Inject javascript to the webpage you are visiting".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Javascript Injector

Baixe arquivos de extensão Javascript Injector 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

                        This extension allows you to inject any javascript code into the web page you are visiting. It remembers your page specific script and syncs it across all your devices.

For example, if you want to change the background color of https://duckduckgo.com/ with light blue, you can inject the script 'document.body.style.backgroundColor = "lightblue";' using this extension. After that every time you open this web site, the back ground will be light blue automatically.                    

Informações Básicas da Extensão

Nome Javascript Injector Javascript Injector
ID ejnccfcackblkelbafbolcpjfpcmbplg
URL Oficial https://chromewebstore.google.com/detail/javascript-injector/ejnccfcackblkelbafbolcpjfpcmbplg
Descrição Inject javascript to the webpage you are visiting
Tamanho do Arquivo 59.53 KB
Contagem de Instalações 2,000
Versão Atual 1.2
Última Atualização 2017-06-16
Data de Publicação 2017-06-16
Classificação 4.13/5 Total de 8 Avaliações
Desenvolvedor Daniel Han
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/hex0cter/js-injector
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Javascript Injector",
    "author": "Daniel Han",
    "short_name": "JS injector",
    "description": "Inject javascript to the webpage you are visiting",
    "version": "1.2",
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "24": "images\/icon24.png",
            "32": "images\/icon32.png",
            "128": "images\/icon128.png"
        },
        "default_title": "Javascript Injector",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "activeTab",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ]
}