run-script
run script on page load
Cos'è run-script?
run-script è un'estensione di Chrome sviluppata da zhangsanshi5566, e la sua funzione principale è "run script on page load".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione run-script
Scarica i file di estensione run-script 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
We need run script for test or other things. If we don't want to open console tab every times, you can choose this tool.
Informazioni di Base sull'Estensione
Nome | |
ID | gddnebgjhlhediiojefadmljmnjfomak |
URL Ufficiale | https://chrome.google.com/webstore/detail/run-script/gddnebgjhlhediiojefadmljmnjfomak |
Descrizione | run script on page load |
Dimensione del File | 728 KB |
Conteggio Installazioni | 17 |
Versione Corrente | 0.0.2 |
Ultimo Aggiornamento | 2017-02-26 |
Data di Pubblicazione | 2017-02-26 |
Sviluppatore | zhangsanshi5566 |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "run-script", "version": "0.0.2", "manifest_version": 2, "description": "run script on page load", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "default_locale": "en", "background": { "scripts": [ "scripts\/background.js" ] }, "permissions": [ "tabs", "activeTab", "http:\/\/*\/*", "https:\/\/*\/*", "debugger", "notifications", "pageCapture", "topSites", "storage", "unlimitedStorage" ], "options_ui": { "page": "options.html", "chrome_style": true, "open_in_tab": true }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "scripts\/contentscript.js" ], "run_at": "document_start", "all_frames": false } ], "browser_action": { "default_icon": { "19": "images\/icon-19.png", "38": "images\/icon-38.png" }, "default_title": "run script", "default_popup": "popup.html" }, "web_accessible_resources": [ "images\/icon-48.png" ] } |