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 |
| 官方網址 | 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"
]
} | |