Imgur Chrome Extension

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

Co je Imgur Chrome Extension?

Imgur Chrome Extension je rozšíření Chrome vyvinuté gillesbertaux, a jeho hlavní funkcí je „This extension shows trending posts on Imgur when a new tab is open“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Imgur Chrome Extension

Stáhněte si soubory rozšíření Imgur Chrome Extension ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Imgur Chrome Extension Imgur Chrome Extension
ID ajacnfghngjimlebbfafobbhofkmpnnp
Oficiální URL https://chrome.google.com/webstore/detail/imgur-chrome-extension/ajacnfghngjimlebbfafobbhofkmpnnp
Popis This extension shows trending posts on Imgur when a new tab is open
Velikost souboru 668 KB
Počet instalací 76
Aktuální Verze 1.0
Poslední Aktualizace 2017-01-14
Datum Vydání 2017-01-14
Hodnocení 5.00/5 Celkem 3 Hodnocení
Vývojář gillesbertaux
E-mail [email protected]
Typ Platby in_app
Webové stránky Rozšíření https://github.com/gillesbertaux/imgur-chrome-extension
URL Stránky Nápovědy https://github.com/gillesbertaux/imgur-chrome-extension
Podporované Jazyky 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"
    ]
}