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".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου 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 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' "
}