Degallerify
This extension will convert all instances of imgur.com/gallery/ links to direct links
Qu'est-ce que Degallerify ?
Degallerify est une extension Chrome développée par JonLuca, et sa fonction principale est "This extension will convert all instances of imgur.com/gallery/ links to direct links".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Degallerify
Téléchargez les fichiers d'extension Degallerify 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
This extension replaces all links that point to imgur's gallery feature to direct links to the image You can view the source code here: https://github.com/jonluca/Degallerify
Informations de Base sur l'Extension
Nom | |
ID | jbloaejhknfcbegnkppflnkoechohdki |
URL Officiel | https://chromewebstore.google.com/detail/degallerify/jbloaejhknfcbegnkppflnkoechohdki |
Description | This extension will convert all instances of imgur.com/gallery/ links to direct links |
Taille du Fichier | 110 KB |
Nombre d'Installations | 96 |
Version Actuelle | 2.4 |
Dernière Mise à Jour | 2017-02-28 |
Date de Publication | 2017-02-27 |
Évaluation | 5.00/5 Total 5 Évaluations |
Développeur | JonLuca |
[email protected] | |
Type de Paiement | free |
URL de la Page de Politique de Confidentialité | https://github.com/jonluca/RideShare-Trip-Stats/blob/master/PRIVACY.md |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Degallerify", "description": "This extension will convert all instances of imgur.com\/gallery\/ links to direct links", "version": "2.4", "background": { "scripts": [ "js\/background.js", "js\/jquery-2.1.1.min.js" ] }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content_script.js", "js\/jquery-2.1.1.min.js" ] } ], "icons": { "64": "images\/icon64.png", "32": "images\/icon32.png", "128": "images\/icon128.png" }, "page_action": { "default_title": "Degallerify", "default_icon": "images\/icon.png" }, "homepage_url": "https:\/\/github.com\/jonluca\/Degallerify\/", "web_accessible_resources": [ "js\/jquery-2.1.1.min.js" ] } |