Stickit

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

Stickit란 무엇입니까?

Stickit은(는) jesterswilde에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension shows a Google Image search result for the current page"입니다.

Stickit 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Stickit Stickit
ID aodfbpjbolkaoebndoggjmemkokflkdg
공식 URL https://chrome.google.com/webstore/detail/stickit/aodfbpjbolkaoebndoggjmemkokflkdg
설명 This extension shows a Google Image search result for the current page
파일 크기 40.22 KB
설치 횟수 15
현재 버전 1.0.1
최근 업데이트 2015-09-22
출시 날짜 2015-09-22
개발자 jesterswilde
결제 유형 free
지원되는 언어 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\/"
    ]
}