inbox-bg
customize inbox background image
什么是inbox-bg?
inbox-bg是由BiRan开发的Chrome扩展程序,该扩展的主要功能是“customize inbox background image”。
扩展截图
下载inbox-bg扩展crx文件
下载inbox-bg扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Customize Inbox background image. 扩展基本信息
| 名称 | |
| ID | eancpkkghkbgpcokgglmbbnanoddjnbp |
| 官方URL | https://chrome.google.com/webstore/detail/inbox-bg/eancpkkghkbgpcokgglmbbnanoddjnbp |
| 简介 | customize inbox background image |
| 文件大小 | 467 KB |
| 安装次数 | 45 |
| 当前版本 | 1.2 |
| 更新时间 | 2016-02-21 |
| 上架时间 | 2016-02-21 |
| 评分 | 2.38/5 共8次评分 |
| 开发者 | BiRan |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "inbox-bg",
"description": "customize inbox background image",
"version": "1.2",
"content_security_policy": "script-src 'self'; object-src 'self'; img-src *;",
"content_scripts": [
{
"matches": [
"https:\/\/inbox.google.com\/*"
],
"run_at": "document_end",
"js": [
"bg.js"
]
}
],
"permissions": [
"tabs",
"storage",
"https:\/\/inbox.google.com\/*"
],
"browser_action": {
"default_title": "Inbox-BG",
"default_popup": "bg.html"
},
"web_accessible_resources": [
"bg.css",
"bg.jpg"
]
} | |