Inject Code
Inject different javascript or css code to every website, when you want
Inject Code là gì?
Inject Code là một tiện ích mở rộng Chrome được phát triển bởi max, và tính năng chính của nó là "Inject different javascript or css code to every website, when you want".
Ả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 Inject Code
Tải xuống các tệp mở rộng Inject Code 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
Extension will remember all css/js code you injected in every website and auto-inject them when web page is loaded. Features: - inject custom js/css to website - inject CDN links to website - 38 most popular themes - auto-inject code to site option ( after loaded page scripts will inject automatically) - highlight syntax errors and warnings - hot keys : * Ctrl+Enter - run code, * Ctrl+F - find in editor For inject code to site: - open browser devtools panel, - go to "Inject code" tab - write code ( on typing code autosaving ) - on right top corner set ckeckbox "Inject code", and after reload code will be injecting to page ( or press buttom Play for once execute code )
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Inject Code |
ID | gpaakhhkcmlenabckmapmlfnajboobbi |
URL Chính Thức | https://chromewebstore.google.com/detail/inject-code/gpaakhhkcmlenabckmapmlfnajboobbi |
Mô tả | Inject different javascript or css code to every website, when you want |
Kích Thước Tệp | 2.96 MB |
Số Lần Cài Đặt | 792 |
Phiên Bản Hiện Tại | 0.91.21 |
Cập Nhật Lần Cuối | 2020-08-04 |
Ngày Phát Hành | 2020-07-06 |
Đánh Giá | 4.00/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | max |
[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": "Inject Code", "description": "Inject different javascript or css code to every website, when you want", "version": "0.91.21", "minimum_chrome_version": "16.0.884", "permissions": [ "activeTab", "*:\/\/*\/*" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ] } ], "icons": { "16": "16.png", "32": "32.png", "48": "48.png", "128": "128.png" }, "devtools_page": "devtools.html", "manifest_version": 2 } |