Degallerify
This extension will convert all instances of imgur.com/gallery/ links to direct links
Was ist Degallerify?
Degallerify ist eine Chrome-Erweiterung, die von JonLuca entwickelt wurde, und ihr Hauptmerkmal ist "This extension will convert all instances of imgur.com/gallery/ links to direct links".
Erweiterungsscreenshots
Degallerify-Erweiterungs-CRX-Datei herunterladen
Laden Sie Degallerify-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | |
ID | jbloaejhknfcbegnkppflnkoechohdki |
Offizielle URL | https://chromewebstore.google.com/detail/degallerify/jbloaejhknfcbegnkppflnkoechohdki |
Beschreibung | This extension will convert all instances of imgur.com/gallery/ links to direct links |
Dateigröße | 110 KB |
Installationsanzahl | 96 |
Aktuelle Version | 2.4 |
Letztes Update | 2017-02-28 |
Veröffentlichungsdatum | 2017-02-27 |
Bewertung | 5.00/5 Insgesamt 5 Bewertungen |
Entwickler | JonLuca |
[email protected] | |
Zahlungsart | free |
URL der Datenschutzrichtlinien-Seite | https://github.com/jonluca/RideShare-Trip-Stats/blob/master/PRIVACY.md |
Unterstützte Sprachen | 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" ] } |