Stickit
This extension shows a Google Image search result for the current page
Stickit là gì?
Stickit là một tiện ích mở rộng Chrome được phát triển bởi jesterswilde, và tính năng chính của nó là "This extension shows a Google Image search result for the current page".
Tải xuống tệp CRX của tiện ích mở rộng Stickit
Tải xuống các tệp mở rộng Stickit dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | aodfbpjbolkaoebndoggjmemkokflkdg |
URL Chính Thức | https://chrome.google.com/webstore/detail/stickit/aodfbpjbolkaoebndoggjmemkokflkdg |
Mô tả | This extension shows a Google Image search result for the current page |
Kích Thước Tệp | 40.22 KB |
Số Lần Cài Đặt | 15 |
Phiên Bản Hiện Tại | 1.0.1 |
Cập Nhật Lần Cuối | 2015-09-22 |
Ngày Phát Hành | 2015-09-22 |
Nhà Phát Triển | jesterswilde |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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\/" ] } |