Imgur Chrome Extension
This extension shows trending posts on Imgur when a new tab is open
什么是Imgur Chrome Extension?
Imgur Chrome Extension是由gillesbertaux开发的Chrome扩展程序,该扩展的主要功能是“This extension shows trending posts on Imgur when a new tab is open”。
扩展截图
下载Imgur Chrome Extension扩展crx文件
下载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"
]
} | |