mCoffee

Launch bookmarks based on rules.

Qu'est-ce que mCoffee ?

mCoffee est une extension Chrome développée par Thaddaeus, et sa fonction principale est "Launch bookmarks based on rules.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension mCoffee

Téléchargez les fichiers d'extension mCoffee 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

                        mCoffee
=======
This is my take on the extension Morning Coffee from Firefox, which allows you to launch bookmarks based on the day of the week. I wrote this extension for my own use, and am sharing it in case anyone finds it useful.

Instructions
==========
1) create a folder named "mCoffee". If you have multiple folders with the same name, It will only process the first one found. If the bookmark folder "mCoffee" is not found, the icon will turn red. Clicking on the extension will then launch a new tab to https://sites.google.com/view/extension-mcoffee/home.

2) Under the "mCoffee" folder, you can create the following subfolders (create only folders that you use, i.e. you don't need to create "Tue" if you don't have Tuesday specific items to launch)
   i) Daily
   ii) Mon / Tue / Wed / Thu / Fri / Sat / Sun
   iii) 1 - 31
      - place items for a specific day of the month here. For example, items in the folder "1" will be launched on the first day of the month (e.g. you want to check your bank statement every 1st day of the month).
   iv) Weekday
      - items that you want to launch from Mon - Fri
   v) Weekend
      - items that you want to launch on Sat, Sun
   vi) Autostart
        - items here will be launched when the extension is loaded
   vii) Rules
      - set conditions for launching items
      - more advanced options can be set for bookmarks in the Rules folder, for example time blocks, tabGroups
      - add the conditions as a comma separated list inside square brackets in the item's title, e.g. "Testing [2,Mon,Wed]" to launch the item "Testing" on the 2nd of the month, Mondays and Wednesdays

Please refer to https://sites.google.com/view/extension-mcoffee/home for more examples on how to configure and use this extension.

Notes
=====
This is a very basic extension, everything is managed using the bookmark manager. 

The extension checks if the URL is already opened in an existing tab, if so it won't launch a duplicate tab. Note that some sites automatically expands / redirect the base url. For example, if you launched https://mail.google.com the opened url will be https://mail.google.com/mail/. If you click on the extension icon again, it will open another tab for Gmail because "https://mail.google.com" doesn't match "https://mail.google.com/mail/".

Disclaimer
==========
THIS EXTENSION IS PROVIDED IN GOOD FAITH, HOWEVER I MAKE NO REPRESENTATION OR WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, REGARDING THE ACCURACY, ADEQUACY, VALIDITY, RELIABILITY, AVAILABILITY, FUNCTIONALITY
OR COMPLETENESS OF ANY INFORMATION ON THE EXTENSION.

UNDER NO CIRCUMSTANCE SHALL I HAVE ANY LIABILITY TO YOU FOR ANY LOSS OR DAMAGE OF ANY KIND INCURRED AS A RESULT OF THE USE OF THIS EXTENSION.

YOUR USE OF THE EXTENSION IS SOLELY AT YOUR OWN RISK.

Privacy notice
==============
This extension does not collect any data.

History
=======
2023-05-13: version 1.5.5
    - tweaked extension icon to have more contrast for darker themes
    - at least 3 seconds between each execution to ignore accidental double clicks
2022-08-16: version 1.5.4.1
    - TabGroups should now reliably move to start of tab bar
2022-06-30: version 1.5.4
      - TabGroup support. New tag “G_GroupName” for Rules. For example [Daily,G_News] will launch
         the website in the tab group “News”  
2022-04-27: version 1.5.2.1
      - code changes to adapt to service worker behaviour in manifest 3
      - removed 1 second delay in opening tabs 
2022-04-23: version 1.5.1
      - remove limit of 3 concurrent tabs, counter isn't right in some situations
2022-04-16: version 1.5.0
      - manifest v3
      - restrict to 3 concurrent running tabs
2021-08-06: version 1.4.1
      - changed icon
      - not setting badges anymore, status reflected in icon colour
      - open release history page when extension is updated
2021-06-11: v1.4.0
      1) rules support month condition 
      2) if the folder "mCoffee" isn't found, launch the website https://sites.google.com/view/extension-mcoffee/
2021-05-25: v1.3.3
      1) new tag "Autostart"
      2) tweaked badge background colours, badge icon shows the time of when the extension was last clicked.
2018-12-05: v1.2.5
        1) code clean up
2018-11-26: v1.2.0
        1) Rules - parse time range in 24h format, for example 19-21 to launch items between 7PM and 9PM inclusive.
        2) Support for "Weekday", "Weekend"
2018-11-21: v1.1.0
        1) New subfolder, "Rules"

Permissions
===========
bookmarks 	- needed to search for the mCoffee and associated folders
tabs 		- needed to check that the url is not already opened, and to launch a new tab
tabGroups       - group tabs into groups

Credits
=======
Icon for versions < 1.4.1 is from http://icongal.com/gallery/icon/34007/128/coffee_cup_breakfast_mocca. 
Icons from version 1.4.1 and above are my own.

Legal Disclaimer adapted from https://termly.io/resources/templates/sample-disclaimer-template-guide/                    

Informations de Base sur l'Extension

Nom mCoffee mCoffee
ID kgmogjgiagjjdmeilcakimafnpndpggk
URL Officiel https://chromewebstore.google.com/detail/mcoffee/kgmogjgiagjjdmeilcakimafnpndpggk
Description Launch bookmarks based on rules.
Taille du Fichier 25.76 KB
Nombre d'Installations 444
Version Actuelle 1.5.5
Dernière Mise à Jour 2023-05-13
Date de Publication 2018-12-05
Évaluation 4.71/5 Total 7 Évaluations
Développeur Thaddaeus
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://sites.google.com/view/extension-mcoffee/
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "mCoffee",
    "version": "1.5.5",
    "author": "Thaddaeus Kong",
    "description": "Launch bookmarks based on rules.",
    "permissions": [
        "bookmarks",
        "tabs",
        "tabGroups"
    ],
    "action": {
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_title": "mCoffee"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "service_worker": "mcoffee-MV3.js"
    },
    "manifest_version": 3
}