run-script
run script on page load
run-script là gì?
run-script là một tiện ích mở rộng Chrome được phát triển bởi zhangsanshi5566, và tính năng chính của nó là "run script on page load".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng run-script
Tải xuống các tệp mở rộng run-script dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | gddnebgjhlhediiojefadmljmnjfomak |
URL Chính Thức | https://chrome.google.com/webstore/detail/run-script/gddnebgjhlhediiojefadmljmnjfomak |
Mô tả | run script on page load |
Kích Thước Tệp | 728 KB |
Số Lần Cài Đặt | 17 |
Phiên Bản Hiện Tại | 0.0.2 |
Cập Nhật Lần Cuối | 2017-02-26 |
Ngày Phát Hành | 2017-02-26 |
Nhà Phát Triển | zhangsanshi5566 |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |