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文件
下载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. 扩展基本信息
| 名称 | |
| 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\/"
]
} | |