Morning Routine

This addon lets you to specify a bunch of urls to be open when you click the coffee cup in the morning

Vad är Morning Routine?

Morning Routine är en Chrome-tillägg utvecklad av javierguzmandev, och dess huvudfunktion är "This addon lets you to specify a bunch of urls to be open when you click the coffee cup in the morning".

Tilläggsskärmbilder

screenshot

Ladda ner Morning Routine-förlängningens CRX-fil

Ladda ner Morning Routine-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        This add-on lets you to specify in the options a bunch of web pages URLs separated by a line. When you are in your morning routine you can click the add-on icon and it will open your favorites web pages.                    

Grundläggande Information om Tillägg

Namn Morning Routine Morning Routine
ID oomonogdlncffnaapifnabnobndkiojm
Officiell webbadress https://chromewebstore.google.com/detail/morning-routine/oomonogdlncffnaapifnabnobndkiojm
Beskrivning This addon lets you to specify a bunch of urls to be open when you click the coffee cup in the morning
Filstorlek 7.22 KB
Antal Installationer 39
Aktuell Version 1.0
Senast Uppdaterad 2022-10-21
Publiceringsdatum 2022-10-20
Utvecklare javierguzmandev
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/javierguzman/morning-routine
Hjälpsida URL https://github.com/javierguzman/morning-routine
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "This addon lets you to specify a bunch of urls to be open when you click the coffee cup in the morning",
    "manifest_version": 3,
    "name": "Morning Routine",
    "version": "1.0",
    "author": "Javier Guzman",
    "homepage_url": "https:\/\/github.com\/javierguzman\/morning-routine",
    "icons": {
        "48": "icons\/coffee-cup-48.png"
    },
    "action": {
        "default_icon": {
            "48": "icons\/coffee-cup-48.png"
        },
        "default_title": "Morning Routine"
    },
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "storage"
    ]
}