Scripty - Javascript Injector

Inject your Javascript into the webpage

Cos'è Scripty - Javascript Injector?

Scripty - Javascript Injector è un'estensione di Chrome sviluppata da https://scripty.abhisheksatre.com, e la sua funzione principale è "Inject your Javascript into the webpage".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Scripty - Javascript Injector

Scarica i file di estensione Scripty - Javascript Injector in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        The Scripty extension allows you to inject custom javascript to a webpage.

Features:
1. Inject script based on URL, host or regex.
2. Download script from Script Store.
3. Run the script directly from the context menu.
4. Publish script on Script Store.
5. Share script with other users.
6. Enable/Disable the scripts

How To Use:
1. Add your custom script in the Scripty extension.
2. Select the execution mode: Manual/Automatic
3. To run a script: 
- Open the extension and click the play button.
Or
- Run a script from the context menu. Right Click > Select Scripty > Select your script.
4. Automatic scripts run automatically based on provided configuration.                    

Informazioni di Base sull'Estensione

Nome Scripty - Javascript Injector Scripty - Javascript Injector
ID milkbiaeapddfnpenedfgbfdacpbcbam
URL Ufficiale https://chromewebstore.google.com/detail/scripty-javascript-inject/milkbiaeapddfnpenedfgbfdacpbcbam
Descrizione Inject your Javascript into the webpage
Dimensione del File 22.85 KB
Conteggio Installazioni 24,334
Versione Corrente 0.0.2
Ultimo Aggiornamento 2020-01-30
Data di Pubblicazione 2020-01-30
Valutazione 4.18/5 Totale 60 Valutazioni
Sviluppatore https://scripty.abhisheksatre.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://scripty.abhisheksatre.com/
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Scripty - Javascript Injector",
    "short_name": "Scripty",
    "description": "Inject your Javascript into the webpage",
    "version": "0.0.2",
    "author": "Abhishek Satre",
    "browser_action": {
        "default_icon": {
            "16": "images\/icon_16.png",
            "32": "images\/icon_128.png"
        }
    },
    "icons": {
        "16": "images\/icon_16.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "unlimitedStorage",
        "webNavigation",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "web_accessible_resources": [],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}