Skulptor Resource Manager
Page Action to manage files on Code Skulptor
What is Skulptor Resource Manager?
Skulptor Resource Manager is a Chrome extension developed by Rizwan Sharif, and its main feature is "Page Action to manage files on Code Skulptor".
Extension Screenshots
Download Skulptor Resource Manager Extension CRX File
Download Skulptor Resource Manager extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Skulptor Resource Manager |
ID | ccngaogbjkcidegenddllcdkdnnajebm |
Official URL | https://chromewebstore.google.com/detail/skulptor-resource-manager/ccngaogbjkcidegenddllcdkdnnajebm |
Description | Page Action to manage files on Code Skulptor |
File Size | 68.07 KB |
Installation Count | 24 |
Current Version | 1.1 |
Last Updated | 2012-10-26 |
Publish Date | 2012-10-26 |
Rating | 5.00/5 Total 3 Ratings |
Developer | Rizwan Sharif |
Payment Type | free |
Extension Website | https://github.com/rsharif/CodeSkulptorExtension |
Supported Languages | 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' " } |