Imgur Chrome Extension

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

What is Imgur Chrome Extension?

Imgur Chrome Extension is a Chrome extension developed by gillesbertaux, and its main feature is "This extension shows trending posts on Imgur when a new tab is open".

Extension Screenshots

screenshot
screenshot

Download Imgur Chrome Extension Extension CRX File

Download Imgur Chrome Extension 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

                        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.                    

Extension Basic Information

Name Imgur Chrome Extension Imgur Chrome Extension
ID ajacnfghngjimlebbfafobbhofkmpnnp
Official URL https://chrome.google.com/webstore/detail/imgur-chrome-extension/ajacnfghngjimlebbfafobbhofkmpnnp
Description This extension shows trending posts on Imgur when a new tab is open
File Size 668 KB
Installation Count 76
Current Version 1.0
Last Updated 2017-01-14
Publish Date 2017-01-14
Rating 5.00/5 Total 3 Ratings
Developer gillesbertaux
Email [email protected]
Payment Type in_app
Extension Website https://github.com/gillesbertaux/imgur-chrome-extension
Help Page URL https://github.com/gillesbertaux/imgur-chrome-extension
Supported Languages 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"
    ]
}