Stickit

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

Apa itu Stickit?

Stickit adalah ekstensi Chrome yang dikembangkan oleh jesterswilde, dan fitur utamanya adalah "This extension shows a Google Image search result for the current page".

Unduh Berkas CRX Ekstensi Stickit

Unduh file ekstensi Stickit dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Stickit Stickit
ID aodfbpjbolkaoebndoggjmemkokflkdg
URL Resmi https://chrome.google.com/webstore/detail/stickit/aodfbpjbolkaoebndoggjmemkokflkdg
Deskripsi This extension shows a Google Image search result for the current page
Ukuran File 40.22 KB
Jumlah Instalasi 15
Versi Saat Ini 1.0.1
Terakhir Diperbarui 2015-09-22
Tanggal Publikasi 2015-09-22
Pengembang jesterswilde
Tipe Pembayaran free
Bahasa yang Didukung 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\/"
    ]
}