PicPicker
A picture picker
What is PicPicker?
PicPicker is a Chrome extension developed by walnutzhang, and its main feature is "A picture picker".
Download PicPicker Extension CRX File
Download PicPicker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | PicPicker |
ID | jlchgfmpgjodcofcneekkhkjibjpjlia |
Official URL | https://chromewebstore.google.com/detail/picpicker/jlchgfmpgjodcofcneekkhkjibjpjlia |
Description | A picture picker |
File Size | 17.8 KB |
Installation Count | 118 |
Current Version | 0.1 |
Last Updated | 2016-12-05 |
Publish Date | 2016-12-05 |
Rating | 5.00/5 Total 1 Ratings |
Developer | walnutzhang |
Payment Type | free |
Extension Website | https://github.com/walnutzhang/PicPicker |
Help Page URL | https://github.com/walnutzhang/PicPicker |
Supported Languages | 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" ] } |