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
擴展基本資訊
名稱 | MinimalHero |
ID | gcdaindihlghbalolfkpfkfpgdhlpnpe |
官方網址 | 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" } } |