InjectCode

Store and inject code to browser pages made super easy.

O que é InjectCode?

InjectCode é uma extensão do Chrome desenvolvida por https://jaak.kytt.ee, e sua principal característica é "Store and inject code to browser pages made super easy.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão InjectCode

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

                        For developers who have to deal with sites to which they don't have code side access to. Easily store and inject JavaScript snippets into pages, enhance usability or manipulate data in several open tabs at once.

Features:
* create, edit, delete, sort, name and enable/disable your scripts
* syntax highlighter and autosave
* scripts are stored locally and persist throughout sessions
* run a specific script or all that are marked as active
* change scope to run scripts on the current or on all open tabs
* scripts are injected into the pages after document.ready
* includes jQuery
* added global function openTab(url) to open a new tab within your script (avoid recursion)
* added global XhrMonitor object for working with ajax pages

1.1.0:
* added global InjectCode object which is exported into the content pages (allowing to use attached methods in the Chrome console)

1.1.1:
* removed unused storage permission request

Source available at https://github.com/jaakkytt/InjectCode.                    

Informações Básicas da Extensão

Nome InjectCode InjectCode
ID flhghpihapijancfhnicbnjifdodohpi
URL Oficial https://chromewebstore.google.com/detail/injectcode/flhghpihapijancfhnicbnjifdodohpi
Descrição Store and inject code to browser pages made super easy.
Tamanho do Arquivo 215 KB
Contagem de Instalações 2,341
Versão Atual 1.1.1
Última Atualização 2021-04-26
Data de Publicação 2015-04-01
Classificação 4.65/5 Total de 26 Avaliações
Desenvolvedor https://jaak.kytt.ee
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://jaak.kytt.ee/blog/injectcode
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "InjectCode",
    "description": "Store and inject code to browser pages made super easy.",
    "version": "1.1.1",
    "permissions": [
        "tabs",
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "img\/inject32.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "img\/inject16.png",
        "48": "img\/inject48.png",
        "128": "img\/inject128.png"
    },
    "content_scripts": [
        {
            "js": [
                "js\/jquery-1.10.2.min.js",
                "js\/help_content_script.js",
                "js\/run_content_script.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}