MinimalHero
A lightweight extension that Limits the number of open tabs & removes the feed from Facebook & LinkedIn.
MinimalHeroคืออะไร?
MinimalHero เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://aabergkvist.com และคุณลักษณะหลักของมันคือ "A lightweight extension that Limits the number of open tabs & removes the feed from Facebook & LinkedIn."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย MinimalHero
ดาวน์โหลดไฟล์ส่วนขยาย 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"
}
} | |