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ファイルをダウンロード

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