Imgur Chrome Extension

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

Qu'est-ce que Imgur Chrome Extension ?

Imgur Chrome Extension est une extension Chrome développée par gillesbertaux, et sa fonction principale est "This extension shows trending posts on Imgur when a new tab is open".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Imgur Chrome Extension

Téléchargez les fichiers d'extension Imgur Chrome Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Imgur Chrome Extension Imgur Chrome Extension
ID ajacnfghngjimlebbfafobbhofkmpnnp
URL Officiel https://chrome.google.com/webstore/detail/imgur-chrome-extension/ajacnfghngjimlebbfafobbhofkmpnnp
Description This extension shows trending posts on Imgur when a new tab is open
Taille du Fichier 668 KB
Nombre d'Installations 76
Version Actuelle 1.0
Dernière Mise à Jour 2017-01-14
Date de Publication 2017-01-14
Évaluation 5.00/5 Total 3 Évaluations
Développeur gillesbertaux
Email [email protected]
Type de Paiement in_app
Site Web de l'Extension https://github.com/gillesbertaux/imgur-chrome-extension
URL de la Page d'Aide https://github.com/gillesbertaux/imgur-chrome-extension
Langues Prises en Charge 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"
    ]
}