Inject Javascript -- Synced & Open Source
Inject javascript in web pages, synced across your devices
Inject Javascript -- Synced & Open Sourceคืออะไร?
Inject Javascript -- Synced & Open Source เป็นส่วนขยายของ Chrome ที่พัฒนาโดย quentin.bramas และคุณลักษณะหลักของมันคือ "Inject javascript in web pages, synced across your devices"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Inject Javascript -- Synced & Open Source
ดาวน์โหลดไฟล์ส่วนขยาย Inject Javascript -- Synced & Open Source ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Inject Javascript -- Synced & Open Source |
ID | aechnpkbeoilkginaangjabdhcknecck |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/inject-javascript-synced/aechnpkbeoilkginaangjabdhcknecck |
คำอธิบาย | Inject javascript in web pages, synced across your devices |
ขนาดไฟล์ | 538 KB |
จำนวนการติดตั้ง | 356 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2020-03-28 |
วันที่เผยแพร่ | 2020-03-26 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | quentin.bramas |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/Bramas/Synced-Injected-Scripts |
ภาษาที่รองรับ | 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 } |