Skulptor Resource Manager

Page Action to manage files on Code Skulptor

Skulptor Resource Manager là gì?

Skulptor Resource Manager là một tiện ích mở rộng Chrome được phát triển bởi Rizwan Sharif, và tính năng chính của nó là "Page Action to manage files on Code Skulptor".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Skulptor Resource Manager

Tải xuống các tệp mở rộng Skulptor Resource Manager dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Skulptor Resource Manager Skulptor Resource Manager
ID ccngaogbjkcidegenddllcdkdnnajebm
URL Chính Thức https://chromewebstore.google.com/detail/skulptor-resource-manager/ccngaogbjkcidegenddllcdkdnnajebm
Mô tả Page Action to manage files on Code Skulptor
Kích Thước Tệp 68.07 KB
Số Lần Cài Đặt 24
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2012-10-26
Ngày Phát Hành 2012-10-26
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Rizwan Sharif
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/rsharif/CodeSkulptorExtension
Ngôn Ngữ Được Hỗ Trợ 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' "
}