Javascript injection
Inject external js files into a page in order to extend or modify functionality
Javascript injectionคืออะไร?
Javascript injection เป็นส่วนขยายของ Chrome ที่พัฒนาโดย [email protected] และคุณลักษณะหลักของมันคือ "Inject external js files into a page in order to extend or modify functionality"
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Javascript injection
ดาวน์โหลดไฟล์ส่วนขยาย Javascript injection ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | anblbolcglfjebndjmgnelligobpebpf |
| URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/javascript-injection/anblbolcglfjebndjmgnelligobpebpf |
| คำอธิบาย | Inject external js files into a page in order to extend or modify functionality |
| ขนาดไฟล์ | 25.78 KB |
| จำนวนการติดตั้ง | 77 |
| เวอร์ชันปัจจุบัน | 1.0 |
| อัปเดตครั้งล่าสุด | 2015-08-08 |
| วันที่เผยแพร่ | 2015-08-08 |
| คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
| ผู้พัฒนา | [email protected] |
| ประเภทการชำระเงิน | free |
| ภาษาที่รองรับ | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Javascript injection",
"version": "1.0",
"description": "Inject external js files into a page in order to extend or modify functionality",
"browser_action": {
"default_title": "Javascript injection",
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"manifest_version": 2,
"icons": {
"128": "icon_128.png"
},
"content_scripts": [
{
"js": [
"contentscript.js"
],
"all_frames": true,
"run_at": "document_end",
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
}
],
"background": {
"scripts": [
"background.js"
]
},
"permissions": [
"storage",
"*:\/\/*\/*",
"tabs"
],
"content_security_policy": "script-src 'self' https:\/\/*.googleapis.com; object-src 'self'"
} | |