PicPicker
A picture picker
Wat is PicPicker?
PicPicker is een Chrome-extensie ontwikkeld door walnutzhang, en de belangrijkste functie is "A picture picker".
Download het CRX-bestand van de extensie PicPicker
Download PicPicker-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | jlchgfmpgjodcofcneekkhkjibjpjlia |
| Officiële URL | https://chromewebstore.google.com/detail/picpicker/jlchgfmpgjodcofcneekkhkjibjpjlia |
| Beschrijving | A picture picker |
| Bestandsgrootte | 17.8 KB |
| Aantal Installaties | 118 |
| Huidige Versie | 0.1 |
| Laatst Bijgewerkt | 2016-12-05 |
| Publicatiedatum | 2016-12-05 |
| Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
| Ontwikkelaar | walnutzhang |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/walnutzhang/PicPicker |
| Help Pagina-URL | https://github.com/walnutzhang/PicPicker |
| Ondersteunde Talen | 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"
]
} | |