Imgur Chrome Extension

This extension shows trending posts on Imgur when a new tab is open

Wat is Imgur Chrome Extension?

Imgur Chrome Extension is een Chrome-extensie ontwikkeld door gillesbertaux, en de belangrijkste functie is "This extension shows trending posts on Imgur when a new tab is open".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Imgur Chrome Extension

Download Imgur Chrome Extension-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Hello fellow Imgurian! This extension shows top posts from the front page or usersub every time you open a new tab. 

I added "productivity mode" to prevent the posts to display when you open a new tab.

-----

Disclaimer: this project was not built by the Imgur staff. This is an unofficial Chrome Extension.                    

Basisinformatie over de Extensie

Naam Imgur Chrome Extension Imgur Chrome Extension
ID ajacnfghngjimlebbfafobbhofkmpnnp
Officiële URL https://chrome.google.com/webstore/detail/imgur-chrome-extension/ajacnfghngjimlebbfafobbhofkmpnnp
Beschrijving This extension shows trending posts on Imgur when a new tab is open
Bestandsgrootte 668 KB
Aantal Installaties 76
Huidige Versie 1.0
Laatst Bijgewerkt 2017-01-14
Publicatiedatum 2017-01-14
Beoordeling 5.00/5 Totaal 3 Beoordelingen
Ontwikkelaar gillesbertaux
E-mail [email protected]
Betalingswijze in_app
Extensiewebsite https://github.com/gillesbertaux/imgur-chrome-extension
Help Pagina-URL https://github.com/gillesbertaux/imgur-chrome-extension
Ondersteunde Talen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Imgur Chrome Extension",
    "description": "This extension shows trending posts on Imgur when a new tab is open",
    "version": "1.0",
    "author": "TheMappleKindYeah",
    "homepage_url": "https:\/\/github.com\/gillesbertaux\/imgur-chrome-extension",
    "short_name": "Imgur App",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "icons": {
        "128": "icon_128.png",
        "48": "icon_48.png",
        "16": "icon_16.png"
    },
    "chrome_url_overrides": {
        "newtab": "imgur.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.google.com\/*"
            ],
            "css": [
                "main.css"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}