run-script
run script on page load
什么是run-script?
run-script是由zhangsanshi5566开发的Chrome扩展程序,该扩展的主要功能是“run script on page load”。
扩展截图
下载run-script扩展crx文件
下载run-script扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| ID | gddnebgjhlhediiojefadmljmnjfomak |
| 官方URL | https://chrome.google.com/webstore/detail/run-script/gddnebgjhlhediiojefadmljmnjfomak |
| 简介 | run script on page load |
| 文件大小 | 728 KB |
| 安装次数 | 17 |
| 当前版本 | 0.0.2 |
| 更新时间 | 2017-02-26 |
| 上架时间 | 2017-02-26 |
| 开发者 | zhangsanshi5566 |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | 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"
]
} | |