Imgur Chrome Extension
This extension shows trending posts on Imgur when a new tab is open
¿Qué es Imgur Chrome Extension?
Imgur Chrome Extension es una extensión de Chrome desarrollada por gillesbertaux, y su función principal es "This extension shows trending posts on Imgur when a new tab is open".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Imgur Chrome Extension
Descarga archivos de extensión Imgur Chrome Extension en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | |
ID | ajacnfghngjimlebbfafobbhofkmpnnp |
URL Oficial | https://chrome.google.com/webstore/detail/imgur-chrome-extension/ajacnfghngjimlebbfafobbhofkmpnnp |
Descripción | This extension shows trending posts on Imgur when a new tab is open |
Tamaño del Archivo | 668 KB |
Cantidad de Instalaciones | 76 |
Versión Actual | 1.0 |
Última Actualización | 2017-01-14 |
Fecha de Publicación | 2017-01-14 |
Calificación | 5.00/5 Total de 3 Calificaciones |
Desarrollador | gillesbertaux |
Correo electrónico | [email protected] |
Tipo de Pago | in_app |
Sitio Web de la Extensión | https://github.com/gillesbertaux/imgur-chrome-extension |
URL de la Página de Ayuda | https://github.com/gillesbertaux/imgur-chrome-extension |
Idiomas Soportados | 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" ] } |