PicPicker
A picture picker
Qu'est-ce que PicPicker ?
PicPicker est une extension Chrome développée par walnutzhang, et sa fonction principale est "A picture picker".
Télécharger le fichier CRX de l'extension PicPicker
Téléchargez les fichiers d'extension PicPicker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | PicPicker |
ID | jlchgfmpgjodcofcneekkhkjibjpjlia |
URL Officiel | https://chromewebstore.google.com/detail/picpicker/jlchgfmpgjodcofcneekkhkjibjpjlia |
Description | A picture picker |
Taille du Fichier | 17.8 KB |
Nombre d'Installations | 118 |
Version Actuelle | 0.1 |
Dernière Mise à Jour | 2016-12-05 |
Date de Publication | 2016-12-05 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | walnutzhang |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/walnutzhang/PicPicker |
URL de la Page d'Aide | https://github.com/walnutzhang/PicPicker |
Langues Prises en Charge | 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" ] } |