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"
}
} | |