MinimalHero
A lightweight extension that Limits the number of open tabs & removes the feed from Facebook & LinkedIn.
什么是MinimalHero?
MinimalHero是由https://aabergkvist.com开发的Chrome扩展程序,该扩展的主要功能是“A lightweight extension that Limits the number of open tabs & removes the feed from Facebook & LinkedIn.”。
扩展截图
下载MinimalHero扩展crx文件
下载MinimalHero扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Minimize distractions & keep focus on the things that matter to you by preventing multi-tasking and mindless feed-scrolling.
A lightweight chrome browser extension that Limits the number of open tabs & removes the feed from Facebook & LinkedIn.
CHANGELOG:
1.1 - Added "Disable Plugin for 10 minutes" button.
1.0 - Initial Release 扩展基本信息
| 名称 | |
| ID | gcdaindihlghbalolfkpfkfpgdhlpnpe |
| 官方URL | https://chromewebstore.google.com/detail/minimalhero/gcdaindihlghbalolfkpfkfpgdhlpnpe |
| 简介 | A lightweight extension that Limits the number of open tabs & removes the feed from Facebook & LinkedIn. |
| 文件大小 | 14.71 KB |
| 安装次数 | 48 |
| 当前版本 | 1.1 |
| 更新时间 | 2017-12-12 |
| 上架时间 | 2017-12-12 |
| 评分 | 5.00/5 共2次评分 |
| 开发者 | https://aabergkvist.com |
| 付费类型 | free |
| 扩展官网 | https://aabergkvist.com/resources |
| 帮助页面URL | https://aabergkvist.com/contact |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "MinimalHero",
"description": "A lightweight extension that Limits the number of open tabs & removes the feed from Facebook & LinkedIn.",
"version": "1.1",
"permissions": [
"http:\/\/www.linkedin.com",
"https:\/\/www.linkedin.com",
"http:\/\/www.facebook.com",
"https:\/\/www.facebook.com",
"activeTab",
"storage"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"http:\/\/*.linkedin.com\/*",
"https:\/\/*.linkedin.com\/*"
],
"js": [
"linkedin.js"
],
"css": [
"linkedin.css"
]
},
{
"matches": [
"http:\/\/*.facebook.com\/*",
"https:\/\/*.facebook.com\/*"
],
"js": [
"facebook.js"
],
"css": [
"facebook.css"
]
}
],
"icons": {
"128": "icon.png"
},
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
}
} | |