MinimalHero
A lightweight extension that Limits the number of open tabs & removes the feed from Facebook & LinkedIn.
Cos'è MinimalHero?
MinimalHero è un'estensione di Chrome sviluppata da https://aabergkvist.com, e la sua funzione principale è "A lightweight extension that Limits the number of open tabs & removes the feed from Facebook & LinkedIn.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione MinimalHero
Scarica i file di estensione MinimalHero in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 Informazioni di Base sull'Estensione
| Nome | |
| ID | gcdaindihlghbalolfkpfkfpgdhlpnpe |
| URL Ufficiale | https://chromewebstore.google.com/detail/minimalhero/gcdaindihlghbalolfkpfkfpgdhlpnpe |
| Descrizione | A lightweight extension that Limits the number of open tabs & removes the feed from Facebook & LinkedIn. |
| Dimensione del File | 14.71 KB |
| Conteggio Installazioni | 48 |
| Versione Corrente | 1.1 |
| Ultimo Aggiornamento | 2017-12-12 |
| Data di Pubblicazione | 2017-12-12 |
| Valutazione | 5.00/5 Totale 2 Valutazioni |
| Sviluppatore | https://aabergkvist.com |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://aabergkvist.com/resources |
| URL della Pagina di Aiuto | https://aabergkvist.com/contact |
| Lingue Supportate | 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"
}
} | |