Devsheet

Search and create code snippets

Cos'è Devsheet?

Devsheet è un'estensione di Chrome sviluppata da https://devsheet.com, e la sua funzione principale è "Search and create code snippets".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Devsheet

Scarica i file di estensione Devsheet in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        The chrome extension provides you the short and easiest way to search and create code snippets on the cloud.                    

Informazioni di Base sull'Estensione

Nome Devsheet Devsheet
ID jkfmhofllmgpemedelijnhcpfgbhaphc
URL Ufficiale https://chrome.google.com/webstore/detail/devsheet/jkfmhofllmgpemedelijnhcpfgbhaphc
Descrizione Search and create code snippets
Dimensione del File 173 KB
Conteggio Installazioni 168
Versione Corrente 1.3
Ultimo Aggiornamento 2020-11-11
Data di Pubblicazione 2019-07-20
Valutazione 4.00/5 Totale 4 Valutazioni
Sviluppatore https://devsheet.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://devsheet.com
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Devsheet",
    "manifest_version": 2,
    "description": "Search and create code snippets",
    "version": "1.3",
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Devsheet",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/devsheet.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "lib\/prism.js",
                "js\/content-script.js"
            ],
            "css": [
                "css\/dsStyle.css"
            ]
        }
    ]
}