run-script
run script on page load
Wat is run-script?
run-script is een Chrome-extensie ontwikkeld door zhangsanshi5566, en de belangrijkste functie is "run script on page load".
Extensie Screenshots
Download het CRX-bestand van de extensie run-script
Download run-script-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | gddnebgjhlhediiojefadmljmnjfomak |
Officiële URL | https://chrome.google.com/webstore/detail/run-script/gddnebgjhlhediiojefadmljmnjfomak |
Beschrijving | run script on page load |
Bestandsgrootte | 728 KB |
Aantal Installaties | 17 |
Huidige Versie | 0.0.2 |
Laatst Bijgewerkt | 2017-02-26 |
Publicatiedatum | 2017-02-26 |
Ontwikkelaar | zhangsanshi5566 |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |