Skulptor Resource Manager

Page Action to manage files on Code Skulptor

Skulptor Resource Manager란 무엇입니까?

Skulptor Resource Manager은(는) Rizwan Sharif에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Page Action to manage files on Code Skulptor"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Skulptor Resource Manager 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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' "
}