InjectCode
Store and inject code to browser pages made super easy.
InjectCodeคืออะไร?
InjectCode เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://jaak.kytt.ee และคุณลักษณะหลักของมันคือ "Store and inject code to browser pages made super easy."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย InjectCode
ดาวน์โหลดไฟล์ส่วนขยาย InjectCode ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
For developers who have to deal with sites to which they don't have code side access to. Easily store and inject JavaScript snippets into pages, enhance usability or manipulate data in several open tabs at once. Features: * create, edit, delete, sort, name and enable/disable your scripts * syntax highlighter and autosave * scripts are stored locally and persist throughout sessions * run a specific script or all that are marked as active * change scope to run scripts on the current or on all open tabs * scripts are injected into the pages after document.ready * includes jQuery * added global function openTab(url) to open a new tab within your script (avoid recursion) * added global XhrMonitor object for working with ajax pages 1.1.0: * added global InjectCode object which is exported into the content pages (allowing to use attached methods in the Chrome console) 1.1.1: * removed unused storage permission request Source available at https://github.com/jaakkytt/InjectCode.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | InjectCode |
ID | flhghpihapijancfhnicbnjifdodohpi |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/injectcode/flhghpihapijancfhnicbnjifdodohpi |
คำอธิบาย | Store and inject code to browser pages made super easy. |
ขนาดไฟล์ | 215 KB |
จำนวนการติดตั้ง | 2,341 |
เวอร์ชันปัจจุบัน | 1.1.1 |
อัปเดตครั้งล่าสุด | 2021-04-26 |
วันที่เผยแพร่ | 2015-04-01 |
คะแนน | 4.65/5 รวมทั้งหมด 26 คะแนน |
ผู้พัฒนา | https://jaak.kytt.ee |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://jaak.kytt.ee/blog/injectcode |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "InjectCode", "description": "Store and inject code to browser pages made super easy.", "version": "1.1.1", "permissions": [ "tabs", "activeTab", "http:\/\/*\/*", "https:\/\/*\/*" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "background": { "scripts": [ "js\/background.js" ] }, "browser_action": { "default_icon": "img\/inject32.png", "default_popup": "popup.html" }, "icons": { "16": "img\/inject16.png", "48": "img\/inject48.png", "128": "img\/inject128.png" }, "content_scripts": [ { "js": [ "js\/jquery-1.10.2.min.js", "js\/help_content_script.js", "js\/run_content_script.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ] } |