run-script
run script on page load
run-scriptคืออะไร?
run-script เป็นส่วนขยายของ Chrome ที่พัฒนาโดย zhangsanshi5566 และคุณลักษณะหลักของมันคือ "run script on page load"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย run-script
ดาวน์โหลดไฟล์ส่วนขยาย 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" ] } |