Slidur
Brings back slideshows for Imgur galleries
What is Slidur?
Slidur is a Chrome extension developed by Chris Blakely, and its main feature is "Brings back slideshows for Imgur galleries".
Extension Screenshots
Download Slidur Extension CRX File
Download Slidur 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
Adds an enlarged image viewer and automatic slideshow with adjustable speed for Imgur galleries. Just navigate to a gallery and click on the "Slidur" button that appears in the header of the post.
Extension Basic Information
Name | |
ID | iklaihmmknbmhnkhlcpppjalllnpcklk |
Official URL | https://chromewebstore.google.com/detail/slidur/iklaihmmknbmhnkhlcpppjalllnpcklk |
Description | Brings back slideshows for Imgur galleries |
File Size | 126 KB |
Installation Count | 54 |
Current Version | 1.0.3 |
Last Updated | 2019-05-21 |
Publish Date | 2019-05-20 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Chris Blakely |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Slidur", "description": "Brings back slideshows for Imgur galleries", "version": "1.0.3", "author": "Jake Prins", "browser_action": { "default_icon": "\/img\/slidur.png", "default_title": "Slidur", "default_popup": "popup.html" }, "web_accessible_resources": [ "img\/*.svg", ".ttf", "lib\/*.ttf", "img\/*.woff" ], "content_scripts": [ { "css": [ "styles.css" ], "js": [ "lib\/jquery-3.4.1.min.js", "content.js" ], "matches": [ "https:\/\/imgur.com\/gallery\/*", "https:\/\/imgur.com\/a\/*" ], "run_at": "document_end" } ], "permissions": [ "activeTab", "tabs" ] } |