PicPicker
A picture picker
什么是PicPicker?
PicPicker是由walnutzhang开发的Chrome扩展程序,该扩展的主要功能是“A picture picker”。
下载PicPicker扩展crx文件
下载PicPicker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A Chrome extension to list all the pictures of a page, including imgs and backgrounds. Use it if you want to download pictures that you can't direct right click and save. 扩展基本信息
| 名称 | |
| ID | jlchgfmpgjodcofcneekkhkjibjpjlia |
| 官方URL | https://chromewebstore.google.com/detail/picpicker/jlchgfmpgjodcofcneekkhkjibjpjlia |
| 简介 | A picture picker |
| 文件大小 | 17.8 KB |
| 安装次数 | 118 |
| 当前版本 | 0.1 |
| 更新时间 | 2016-12-05 |
| 上架时间 | 2016-12-05 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | walnutzhang |
| 付费类型 | free |
| 扩展官网 | https://github.com/walnutzhang/PicPicker |
| 帮助页面URL | https://github.com/walnutzhang/PicPicker |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "PicPicker",
"description": "A picture picker",
"version": "0.1",
"author": "WalnutZhang",
"homepage_url": "https:\/\/github.com\/walnutzhang\/PicPicker",
"icons": {
"128": "icon128.png",
"48": "icon48.png"
},
"browser_action": {
"default_icon": "icon48.png"
},
"permissions": [
"activeTab"
],
"background": {
"persistent": false,
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"css": [
"content_styles.css"
],
"js": [
"zepto.min.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
}
],
"web_accessible_resources": [
"content_styles.css"
]
} | |