JavaScript Injector
Inject javascript in a given website.
JavaScript Injector là gì?
JavaScript Injector là một tiện ích mở rộng Chrome được phát triển bởi luisnaia, và tính năng chính của nó là "Inject javascript in a given website.".
Ả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 JavaScript Injector
Tải xuống các tệp mở rộng JavaScript Injector 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
This chrome extension has the purpose of injecting Java Script into a target URL every time that page loads. You can inject your favourite script to extend the page functionality. Features - Add urls with or without regular expressions - Keep a list of your urls and edit your js code inline - You can turn on/off the js code when you wish - Search trough your URLs
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | JavaScript Injector |
ID | knmnopfmccchnnfdoiddbihbcboeedll |
URL Chính Thức | https://chromewebstore.google.com/detail/javascript-injector/knmnopfmccchnnfdoiddbihbcboeedll |
Mô tả | Inject javascript in a given website. |
Kích Thước Tệp | 397 KB |
Số Lần Cài Đặt | 5,062 |
Phiên Bản Hiện Tại | 1.0.4 |
Cập Nhật Lần Cuối | 2014-08-21 |
Ngày Phát Hành | 2014-08-21 |
Đánh Giá | 2.91/5 Tổng số 33 Đánh Giá |
Nhà Phát Triển | luisnaia |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/darkbls/jsinjector |
URL Trang Trợ Giúp | https://github.com/darkbls/jsinjector |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "JavaScript Injector", "short_name": "Js Injector", "description": "Inject javascript in a given website. ", "version": "1.0.4", "browser_action": { "default_icon": "icon72.png", "default_title": "Activate Js Inject rules - Click to add a new rule" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "activeTab", "storage", "webNavigation" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "options_page": "options.html", "background": { "scripts": [ "js\/background.js" ], "persistent": false } } |