Inject Code
Inject different javascript or css code to every website, when you want
Inject Codeคืออะไร?
Inject Code เป็นส่วนขยายของ Chrome ที่พัฒนาโดย max และคุณลักษณะหลักของมันคือ "Inject different javascript or css code to every website, when you want"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Inject Code
ดาวน์โหลดไฟล์ส่วนขยาย Inject Code ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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 )
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Inject Code |
ID | gpaakhhkcmlenabckmapmlfnajboobbi |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/inject-code/gpaakhhkcmlenabckmapmlfnajboobbi |
คำอธิบาย | Inject different javascript or css code to every website, when you want |
ขนาดไฟล์ | 2.96 MB |
จำนวนการติดตั้ง | 792 |
เวอร์ชันปัจจุบัน | 0.91.21 |
อัปเดตครั้งล่าสุด | 2020-08-04 |
วันที่เผยแพร่ | 2020-07-06 |
คะแนน | 4.00/5 รวมทั้งหมด 6 คะแนน |
ผู้พัฒนา | max |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | 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 } |