Stickit

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

O que é Stickit?

Stickit é uma extensão do Chrome desenvolvida por jesterswilde, e sua principal característica é "This extension shows a Google Image search result for the current page".

Baixar o arquivo CRX da Extensão Stickit

Baixe arquivos de extensão Stickit no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Stickit Stickit
ID aodfbpjbolkaoebndoggjmemkokflkdg
URL Oficial https://chrome.google.com/webstore/detail/stickit/aodfbpjbolkaoebndoggjmemkokflkdg
Descrição This extension shows a Google Image search result for the current page
Tamanho do Arquivo 40.22 KB
Contagem de Instalações 15
Versão Atual 1.0.1
Última Atualização 2015-09-22
Data de Publicação 2015-09-22
Desenvolvedor jesterswilde
Tipo de Pagamento free
Idiomas Suportados 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\/"
    ]
}