Inject Code

Inject your own code into any webpage

Vad är Inject Code?

Inject Code är en Chrome-tillägg utvecklad av Yehuda Moskowitz, och dess huvudfunktion är "Inject your own code into any webpage".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Inject Code-förlängningens CRX-fil

Ladda ner Inject Code-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Inject Code Inject Code
ID jpbbdgndcngomphbmplabjginoihkdph
Officiell webbadress https://chromewebstore.google.com/detail/inject-code/jpbbdgndcngomphbmplabjginoihkdph
Beskrivning Inject your own code into any webpage
Filstorlek 4.68 MB
Antal Installationer 1,066
Aktuell Version 1.0.4.7
Senast Uppdaterad 2024-01-04
Publiceringsdatum 2018-12-18
Betyg 4.89/5 Totalt 9 Betyg
Utvecklare Yehuda Moskowitz
E-post [email protected]
Betalningssätt free
Stödda Språk 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
        }
    ]
}