Stickit

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

Stickitคืออะไร?

Stickit เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jesterswilde และคุณลักษณะหลักของมันคือ "This extension shows a Google Image search result for the current page"

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Stickit

ดาวน์โหลดไฟล์ส่วนขยาย Stickit ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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\/"
    ]
}