Stickit

This extension shows a Google Image search result for the current page

Cos'è Stickit?

Stickit è un'estensione di Chrome sviluppata da jesterswilde, e la sua funzione principale è "This extension shows a Google Image search result for the current page".

Scarica il file CRX dell'estensione Stickit

Scarica i file di estensione Stickit 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

                        Put sticky notes on any webpage.
Click on the icon to set channel. 
Alt+C to make new sticky note
Alt+H to hide all sticky notes

There are no permissions, such trust.                    

Informazioni di Base sull'Estensione

Nome Stickit Stickit
ID aodfbpjbolkaoebndoggjmemkokflkdg
URL Ufficiale https://chrome.google.com/webstore/detail/stickit/aodfbpjbolkaoebndoggjmemkokflkdg
Descrizione This extension shows a Google Image search result for the current page
Dimensione del File 40.22 KB
Conteggio Installazioni 15
Versione Corrente 1.0.1
Ultimo Aggiornamento 2015-09-22
Data di Pubblicazione 2015-09-22
Sviluppatore jesterswilde
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Stickit",
    "description": "This extension shows a Google Image search result for the current page",
    "version": "1.0.1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js",
            "jquery-2.1.4.min.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "content_style.css"
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "content_base.js"
            ]
        }
    ],
    "commands": {
        "add-sticky-note": {
            "suggested_key": {
                "default": "Alt+C"
            },
            "description": "Adds a sticky note"
        },
        "toggle-sticky-notes": {
            "suggested_key": {
                "default": "Alt+H"
            },
            "description": "Toggle Sticky Notes"
        }
    },
    "permissions": [
        "tabs",
        "https:\/\/ajax.googleapis.com\/"
    ]
}