Skulptor Resource Manager
Page Action to manage files on Code Skulptor
Skulptor Resource Managerคืออะไร?
Skulptor Resource Manager เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Rizwan Sharif และคุณลักษณะหลักของมันคือ "Page Action to manage files on Code Skulptor"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Skulptor Resource Manager
ดาวน์โหลดไฟล์ส่วนขยาย Skulptor Resource Manager ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Helps to keep track of files saved on code skuptor . Extends the functionality of save button of code skulptor by prompting for file name and optional comment about file contents so that you can remember which state you left the file in or what file contains. Enabling/installing extension puts an in icon on the right side of address bar [ extension becomes active only when you browse codeskulptor webpage ] .Clicking on the icon shows you your saved files ,sorted by date.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Skulptor Resource Manager |
ID | ccngaogbjkcidegenddllcdkdnnajebm |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/skulptor-resource-manager/ccngaogbjkcidegenddllcdkdnnajebm |
คำอธิบาย | Page Action to manage files on Code Skulptor |
ขนาดไฟล์ | 68.07 KB |
จำนวนการติดตั้ง | 24 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2012-10-26 |
วันที่เผยแพร่ | 2012-10-26 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | Rizwan Sharif |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/rsharif/CodeSkulptorExtension |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "Skulptor Resource Manager", "version": "1.1", "description": "Page Action to manage files on Code Skulptor", "permissions": [ "tabs", "storage" ], "background": { "scripts": [ "js\/background.js" ] }, "page_action": { "default_icon": "icon.png", "default_title": "Code Skulport Extension", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/www.codeskulptor.org\/*" ], "css": [ "css\/style.css" ], "js": [ "js\/jquery-1.8.2.min.js", "js\/content_script.js" ] } ], "manifest_version": 2, "content_security_policy": " script-src 'self'; object-src 'self' " } |