Javascript injection
Inject external js files into a page in order to extend or modify functionality
Javascript injection là gì?
Javascript injection là một tiện ích mở rộng Chrome được phát triển bởi [email protected], và tính năng chính của nó là "Inject external js files into a page in order to extend or modify functionality".
Tải xuống tệp CRX của tiện ích mở rộng Javascript injection
Tải xuống các tệp mở rộng Javascript injection 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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | anblbolcglfjebndjmgnelligobpebpf |
URL Chính Thức | https://chrome.google.com/webstore/detail/javascript-injection/anblbolcglfjebndjmgnelligobpebpf |
Mô tả | Inject external js files into a page in order to extend or modify functionality |
Kích Thước Tệp | 25.78 KB |
Số Lần Cài Đặt | 77 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2015-08-08 |
Ngày Phát Hành | 2015-08-08 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | [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": "Javascript injection", "version": "1.0", "description": "Inject external js files into a page in order to extend or modify functionality", "browser_action": { "default_title": "Javascript injection", "default_icon": "icon.png", "default_popup": "popup.html" }, "manifest_version": 2, "icons": { "128": "icon_128.png" }, "content_scripts": [ { "js": [ "contentscript.js" ], "all_frames": true, "run_at": "document_end", "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "background": { "scripts": [ "background.js" ] }, "permissions": [ "storage", "*:\/\/*\/*", "tabs" ], "content_security_policy": "script-src 'self' https:\/\/*.googleapis.com; object-src 'self'" } |