Imgur Chrome Extension

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

Cos'è Imgur Chrome Extension?

Imgur Chrome Extension è un'estensione di Chrome sviluppata da gillesbertaux, e la sua funzione principale è "This extension shows trending posts on Imgur when a new tab is open".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Imgur Chrome Extension

Scarica i file di estensione Imgur Chrome Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Imgur Chrome Extension Imgur Chrome Extension
ID ajacnfghngjimlebbfafobbhofkmpnnp
URL Ufficiale https://chrome.google.com/webstore/detail/imgur-chrome-extension/ajacnfghngjimlebbfafobbhofkmpnnp
Descrizione This extension shows trending posts on Imgur when a new tab is open
Dimensione del File 668 KB
Conteggio Installazioni 76
Versione Corrente 1.0
Ultimo Aggiornamento 2017-01-14
Data di Pubblicazione 2017-01-14
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore gillesbertaux
Email [email protected]
Tipo di Pagamento in_app
Sito Web dell'Estensione https://github.com/gillesbertaux/imgur-chrome-extension
URL della Pagina di Aiuto https://github.com/gillesbertaux/imgur-chrome-extension
Lingue Supportate 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"
    ]
}