Stickit

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

Wat is Stickit?

Stickit is een Chrome-extensie ontwikkeld door jesterswilde, en de belangrijkste functie is "This extension shows a Google Image search result for the current page".

Download het CRX-bestand van de extensie Stickit

Download Stickit-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Stickit Stickit
ID aodfbpjbolkaoebndoggjmemkokflkdg
Officiële URL https://chrome.google.com/webstore/detail/stickit/aodfbpjbolkaoebndoggjmemkokflkdg
Beschrijving This extension shows a Google Image search result for the current page
Bestandsgrootte 40.22 KB
Aantal Installaties 15
Huidige Versie 1.0.1
Laatst Bijgewerkt 2015-09-22
Publicatiedatum 2015-09-22
Ontwikkelaar jesterswilde
Betalingswijze free
Ondersteunde Talen 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\/"
    ]
}