JavaScript Injector
Inject javascript in a given website.
JavaScript Injectorคืออะไร?
JavaScript Injector เป็นส่วนขยายของ Chrome ที่พัฒนาโดย luisnaia และคุณลักษณะหลักของมันคือ "Inject javascript in a given website."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย JavaScript Injector
ดาวน์โหลดไฟล์ส่วนขยาย JavaScript Injector ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | JavaScript Injector |
ID | knmnopfmccchnnfdoiddbihbcboeedll |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/javascript-injector/knmnopfmccchnnfdoiddbihbcboeedll |
คำอธิบาย | Inject javascript in a given website. |
ขนาดไฟล์ | 397 KB |
จำนวนการติดตั้ง | 5,062 |
เวอร์ชันปัจจุบัน | 1.0.4 |
อัปเดตครั้งล่าสุด | 2014-08-21 |
วันที่เผยแพร่ | 2014-08-21 |
คะแนน | 2.91/5 รวมทั้งหมด 33 คะแนน |
ผู้พัฒนา | luisnaia |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/darkbls/jsinjector |
URL หน้าช่วยเหลือ | https://github.com/darkbls/jsinjector |
ภาษาที่รองรับ | 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 } } |