Inject Code

Inject your own code into any webpage

O que é Inject Code?

Inject Code é uma extensão do Chrome desenvolvida por Yehuda Moskowitz, e sua principal característica é "Inject your own code into any webpage".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Inject Code

Baixe arquivos de extensão Inject Code 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

                        Write JS/JSX/CSS snippets that can be executed by click of a button.

Features:
*    Custom code or link to an external library
*    Filter on specific URL's
*    Auto run
*    Filter auto run on specific URL's
*    Simple interface
*    Write/Update in separate tab while testing on web page
*    Toggle horizontal/vertical split view in edit mode
*    Toggle full screen in edit mode
*    Choose whether to run in all frames                    

Informações Básicas da Extensão

Nome Inject Code Inject Code
ID jpbbdgndcngomphbmplabjginoihkdph
URL Oficial https://chromewebstore.google.com/detail/inject-code/jpbbdgndcngomphbmplabjginoihkdph
Descrição Inject your own code into any webpage
Tamanho do Arquivo 4.68 MB
Contagem de Instalações 1,066
Versão Atual 1.0.4.7
Última Atualização 2024-01-04
Data de Publicação 2018-12-18
Classificação 4.89/5 Total de 9 Avaliações
Desenvolvedor Yehuda Moskowitz
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "Inject Code",
    "manifest_version": 2,
    "name": "Inject Code",
    "version": "1.0.4.7",
    "description": "Inject your own code into any webpage",
    "browser_action": {
        "default_popup": "index.html",
        "default_icon": "images\/inject.png",
        "default_title": "Inject Code Snippets"
    },
    "options_page": "index.html?page=options",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_security_policy": "script-src 'self' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk='; object-src 'self'",
    "web_accessible_resources": [],
    "permissions": [
        "activeTab",
        "storage",
        "clipboardWrite"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "babel.js",
                "content.js"
            ],
            "all_frames": true
        }
    ]
}