MinimalHero
A lightweight extension that Limits the number of open tabs & removes the feed from Facebook & LinkedIn.
Qu'est-ce que MinimalHero ?
MinimalHero est une extension Chrome développée par https://aabergkvist.com, et sa fonction principale est "A lightweight extension that Limits the number of open tabs & removes the feed from Facebook & LinkedIn.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension MinimalHero
Téléchargez les fichiers d'extension MinimalHero au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | MinimalHero |
ID | gcdaindihlghbalolfkpfkfpgdhlpnpe |
URL Officiel | https://chromewebstore.google.com/detail/minimalhero/gcdaindihlghbalolfkpfkfpgdhlpnpe |
Description | A lightweight extension that Limits the number of open tabs & removes the feed from Facebook & LinkedIn. |
Taille du Fichier | 14.71 KB |
Nombre d'Installations | 48 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2017-12-12 |
Date de Publication | 2017-12-12 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | https://aabergkvist.com |
Type de Paiement | free |
Site Web de l'Extension | https://aabergkvist.com/resources |
URL de la Page d'Aide | https://aabergkvist.com/contact |
Langues Prises en Charge | 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" } } |