Imgur Extender

Hopefully people will stop bothering @Sarah for new loading gifs every 30 seconds

¿Qué es Imgur Extender?

Imgur Extender es una extensión de Chrome desarrollada por ZacMuerte, y su función principal es "Hopefully people will stop bothering @Sarah for new loading gifs every 30 seconds".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Imgur Extender

Descarga archivos de extensión Imgur Extender en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Changelog:
 -1.9:
   Removed "tabs" permission (otherwise known as "all browsing data"). This did remove the functionality to verify only 1 settings page was open, but I felt the peace of mind from not requiring the permission anymore was worth it.
 -1.7:
   All new settings page, thanks to @SoulExpression, and some backend to some interesting settings coming up.
 -1.6:
   Everything is back to normal, except userIDs will no longer be shown by default, as they are no longer transmitted by default.
 -1.5:
   Imgur did some huge rework on how the code is written, so I had to rip out everything except for the loading icon changing bit. sorry. should be working properly in about a week or so.
 -1.4.3:
   I fixed some long-standing bugs (I couldn't fix them before as they were complex issues I didn't quite understand. I'm learning this as I go). The only errors that should be there are from problems out of my control (the settings not loading is a common one).
   Resizing the loading icons is currently disabled until I figure out why it's broken
 -1.4.2:
   y'know how the last changelog made it look like I did check everything? nope. streamlined the code a LOT more now (and it shouldn't spit out thousands of errors now, because I hooked an event to a function that indirectly fires the event, and yeah...) made the settings page display the version you're running, and it should actually work a bit more predictably now
 -1.4.1:
   forgot to do through bugtesting. settings page should work now. favorite tagging broke with the optimization last time, I haven't fixed that, but it was useless for now anyways
 -1.4: 
   cleaned up a lot of the code, and streamlined it a BUNCH. I know a lot of people had problems with it locking up/eating all the memory. this should help a bunch.
   cleaned up the tagging system, getting it ready for adding user-chosen tags


NOT AFFILIATED WITH OR APPROVED BY IMGUR

This started out as an extension to replace the loading icons, but has become so much more. As of right now, it can: 
-replace the loading icons with any image you want
-put a badge on imgur staff using their main acocunts in the comments
-mark your own comments to make them easier to find
-list everyone's author IDs (not very useful, but it's there!)
-and I'm still adding features! like:
 -favoriting comments for later viewing
 -select multiple images to use for different size loading icons
 -gif preview in the side pane
 -any good suggestions I receive! (I can be contacted @ZacMuerte on imgur)

Explanation of permissions:
I received some complaints about how many permissions I request, so let me break it down, so you can understand I'm not being evil:
 -read all data on imgur: rather self-explanatory. I'm going to be scraping the page and then adding stuff to it, as well as modifying requests that it makes (the loading icon)
 -browsing history: this is where I get complaints. I use this permission to check if you opened a tab to imgur, that is it. if the URL does not contain 'imgur.com' I ignore it (I can't even touch the page anyways). there are ways around using this permission, but it would be rather clunky.
 -other permissions chrome doesn't warn you about: storage (to save your settings), webRequest[blocking] (allows me to modify where the loading icon is pulled from)                    

Información Básica de la Extensión

Nombre Imgur Extender Imgur Extender
ID gcnjboicdkemcdhcmanaokkpjhiikblf
URL Oficial https://chromewebstore.google.com/detail/imgur-extender/gcnjboicdkemcdhcmanaokkpjhiikblf
Descripción Hopefully people will stop bothering @Sarah for new loading gifs every 30 seconds
Tamaño del Archivo 392 KB
Cantidad de Instalaciones 141
Versión Actual 1.9
Última Actualización 2019-09-18
Fecha de Publicación 2019-09-17
Calificación 4.00/5 Total de 10 Calificaciones
Desarrollador ZacMuerte
Tipo de Pago free
URL de la Página de Ayuda http://imgur.com/user/ZacMuerte
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Imgur Extender",
    "short_name": "iX",
    "description": "Hopefully people will stop bothering @Sarah for new loading gifs every 30 seconds",
    "version": "1.9",
    "icons": {
        "16": "icon\/16.png",
        "32": "icon\/32.png",
        "48": "icon\/48.png",
        "64": "icon\/64.png",
        "128": "icon\/128.png",
        "256": "icon\/256.png",
        "512": "icon\/512.png"
    },
    "options_page": "Settings\/settings.html",
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        "*:\/\/imgur.com\/*",
        "*:\/\/*.imgur.com\/*",
        "declarativeContent"
    ],
    "web_accessible_resources": [
        "icon\/*.png"
    ],
    "page_action": {
        "default_icon": "icon\/16-bw.png",
        "default_title": "imgur Extender"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.imgur.com\/*",
                "*:\/\/imgur.com\/*"
            ],
            "js": [
                "Settings\/assets\/js\/jquery-2.1.3.min.js",
                "replaceloader.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ]
}