Imgur Chrome Extension

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

O que é Imgur Chrome Extension?

Imgur Chrome Extension é uma extensão do Chrome desenvolvida por gillesbertaux, e sua principal característica é "This extension shows trending posts on Imgur when a new tab is open".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Imgur Chrome Extension

Baixe arquivos de extensão Imgur Chrome Extension no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Imgur Chrome Extension Imgur Chrome Extension
ID ajacnfghngjimlebbfafobbhofkmpnnp
URL Oficial https://chrome.google.com/webstore/detail/imgur-chrome-extension/ajacnfghngjimlebbfafobbhofkmpnnp
Descrição This extension shows trending posts on Imgur when a new tab is open
Tamanho do Arquivo 668 KB
Contagem de Instalações 76
Versão Atual 1.0
Última Atualização 2017-01-14
Data de Publicação 2017-01-14
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor gillesbertaux
Email [email protected]
Tipo de Pagamento in_app
Site da Extensão https://github.com/gillesbertaux/imgur-chrome-extension
URL da Página de Ajuda https://github.com/gillesbertaux/imgur-chrome-extension
Idiomas Suportados 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"
    ]
}