Javascript Injector
Inject javascript to the webpage you are visiting
Javascript Injector là gì?
Javascript Injector là một tiện ích mở rộng Chrome được phát triển bởi Daniel Han, và tính năng chính của nó là "Inject javascript to the webpage you are visiting".
Ả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 extension allows you to inject any javascript code into the web page you are visiting. It remembers your page specific script and syncs it across all your devices. For example, if you want to change the background color of https://duckduckgo.com/ with light blue, you can inject the script 'document.body.style.backgroundColor = "lightblue";' using this extension. After that every time you open this web site, the back ground will be light blue automatically.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Javascript Injector |
ID | ejnccfcackblkelbafbolcpjfpcmbplg |
URL Chính Thức | https://chromewebstore.google.com/detail/javascript-injector/ejnccfcackblkelbafbolcpjfpcmbplg |
Mô tả | Inject javascript to the webpage you are visiting |
Kích Thước Tệp | 59.53 KB |
Số Lần Cài Đặt | 2,000 |
Phiên Bản Hiện Tại | 1.2 |
Cập Nhật Lần Cuối | 2017-06-16 |
Ngày Phát Hành | 2017-06-16 |
Đánh Giá | 4.13/5 Tổng số 8 Đánh Giá |
Nhà Phát Triển | Daniel Han |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/hex0cter/js-injector |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Javascript Injector", "author": "Daniel Han", "short_name": "JS injector", "description": "Inject javascript to the webpage you are visiting", "version": "1.2", "browser_action": { "default_icon": { "16": "images\/icon16.png", "24": "images\/icon24.png", "32": "images\/icon32.png", "128": "images\/icon128.png" }, "default_title": "Javascript Injector", "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ] }, "permissions": [ "activeTab", "storage", "tabs", "activeTab", "http:\/\/*\/", "https:\/\/*\/" ] } |