Imgur Chrome Extension
This extension shows trending posts on Imgur when a new tab is open
Что такое Imgur Chrome Extension?
Imgur Chrome Extension - это расширение Chrome, разработанное gillesbertaux, и его основная функция - "This extension shows trending posts on Imgur when a new tab is open".
Снимки экрана расширения
Скачать файл CRX расширения Imgur Chrome Extension
Скачайте файлы расширений Imgur Chrome Extension в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | |
ID | ajacnfghngjimlebbfafobbhofkmpnnp |
Официальный URL | https://chrome.google.com/webstore/detail/imgur-chrome-extension/ajacnfghngjimlebbfafobbhofkmpnnp |
Описание | This extension shows trending posts on Imgur when a new tab is open |
Размер файла | 668 KB |
Количество установок | 76 |
Текущая Версия | 1.0 |
Последнее Обновление | 2017-01-14 |
Дата публикации | 2017-01-14 |
Рейтинг | 5.00/5 Всего 3 оценок |
Разработчик | gillesbertaux |
Электронная почта | [email protected] |
Тип оплаты | in_app |
Официальный сайт расширения | https://github.com/gillesbertaux/imgur-chrome-extension |
URL страницы помощи | https://github.com/gillesbertaux/imgur-chrome-extension |
Поддерживаемые языки | 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" ] } |