External script loader
Enable to load external script when a page loaded
External script loaderคืออะไร?
External script loader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ui3o.com และคุณลักษณะหลักของมันคือ "Enable to load external script when a page loaded"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย External script loader
ดาวน์โหลดไฟล์ส่วนขยาย External script loader ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This add-on enable to load external script to add extra features. It can load script from remote server. Possible to manage feature for users. The content script will be run at document_start state. ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | lednjajedpjbhlhjgdbmcjiddjagachp |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/external-script-loader/lednjajedpjbhlhjgdbmcjiddjagachp |
| คำอธิบาย | Enable to load external script when a page loaded |
| ขนาดไฟล์ | 19.62 KB |
| จำนวนการติดตั้ง | 107 |
| เวอร์ชันปัจจุบัน | 2.3.0 |
| อัปเดตครั้งล่าสุด | 2022-03-25 |
| วันที่เผยแพร่ | 2020-03-06 |
| ผู้พัฒนา | ui3o.com |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | https://github.com/ui3o/external-extension |
| URL หน้าช่วยเหลือ | https://github.com/ui3o/external-extension |
| ภาษาที่รองรับ | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "External script loader",
"version": "2.3.0",
"manifest_version": 2,
"description": "Enable to load external script when a page loaded",
"homepage_url": "https:\/\/github.com\/ui3o\/external-extension\/",
"icons": {
"16": "icons\/icon16x16.png",
"48": "icons\/icon48x48.png",
"128": "icons\/icon128x128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"js": [
"src\/core.js"
],
"run_at": "document_start"
},
{
"matches": [
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"js": [
"src\/iframe.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"background": {
"scripts": [
"src\/background.js"
]
},
"permissions": [
"https:\/\/*\/*",
"http:\/\/*\/*",
"http:\/\/localhost\/",
"storage",
"webRequest",
"webRequestBlocking",
" | |