Inject Javascript -- Synced & Open Source
Inject javascript in web pages, synced across your devices
Inject Javascript -- Synced & Open Source là gì?
Inject Javascript -- Synced & Open Source là một tiện ích mở rộng Chrome được phát triển bởi quentin.bramas, và tính năng chính của nó là "Inject javascript in web pages, synced across your devices".
Ả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 Javascript -- Synced & Open Source
Tải xuống các tệp mở rộng Inject Javascript -- Synced & Open Source 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 add custom js to any web page. Due to the critical risk of this kind of extension, I made this extension open source, and very small so that is it easy to check that it does not do anything bad. https://github.com/Bramas/Synced-Injected-Scripts Everything you type is automatically saved and synced. You can use call the function `injectLibs([lib1url, lib2url, ...], calllback)` to inject libraries before your script
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Inject Javascript -- Synced & Open Source |
ID | aechnpkbeoilkginaangjabdhcknecck |
URL Chính Thức | https://chromewebstore.google.com/detail/inject-javascript-synced/aechnpkbeoilkginaangjabdhcknecck |
Mô tả | Inject javascript in web pages, synced across your devices |
Kích Thước Tệp | 538 KB |
Số Lần Cài Đặt | 356 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2020-03-28 |
Ngày Phát Hành | 2020-03-26 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | quentin.bramas |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/Bramas/Synced-Injected-Scripts |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Inject Javascript -- Synced & Open Source", "version": "1.1", "description": "Inject javascript in web pages, synced across your devices", "permissions": [ "activeTab", "storage" ], "options_page": "options.html", "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [], "js": [ "contentScript.js" ] } ], "browser_action": { "default_popup": "popup.html", "default_icon": { "72": "images\/icon-72x72.png", "128": "images\/icon-128x128.png", "512": "images\/icon-512x512.png" } }, "icons": { "72": "images\/icon-72x72.png", "128": "images\/icon-128x128.png", "512": "images\/icon-512x512.png" }, "manifest_version": 2 } |