Skip to content
This repository has been archived by the owner on Mar 30, 2022. It is now read-only.

Latest commit

 

History

History
160 lines (112 loc) · 5.46 KB

README.md

File metadata and controls

160 lines (112 loc) · 5.46 KB

Momentum-Clone

Project that mimics the chrome extension Momentum. It is not intended for distribution of any kind; it is mearly a demonstration of skill using web technologies for potential recruiters.

Motivation

After reading this article by Jungwon Sea, I was interested in making a Chrome Extension; his explanation alone was sufficient to get started. However, I quickly found that I wanted to mock as much of the application as possible, so I decided to add some frameworks to the project to help scale up. Some weeks later, I ended up here. Thank you for taking a look at my project.

Tech/Frameworks used

Special thanks to the wonderful people that have created all the following technologies. If any packages are included but not mentioned, then they will be in the package.json. ❤️

Build Status

Screenshots

Example screenshots of the application.

Full Display

Full Display

Code Style

Developed in Visual Studio Code with the Vetur extension with most of the styling set to "Prettier".

  • Linted with Eslint
  • Code styled with Prettier

Features

  • Persistent browser storage per Google account
  • Random High Quality photos from Unsplash.com
  • Todos
  • Favorite Links
  • Weather
  • Quotes
  • Daily Focus

Roadmap Features

  • Creating a server to process more complicated requests to speed up User activity.
  • Creating a database to securely store user information.
  • Secure transfer of information with implementation of JWT or Cookie protected API calls to back-end (server).
  • Other content-related features to provide unification of online services.

Code Example

Project setup

This project was created using Vue CLI 3 as a starting point and then adding the Vue-Cli-Plugin-Browser-Extension plugin to generate files necessary to develop a Google Chrome extension.

Vue CLI 3

Please follow the documentation at Vue CLI 3 Installation to properly install your project.

My .vuerc project configuration:

"Chrome Extension": {
      "useConfigFiles": true,
      "plugins": {
        "@vue/cli-plugin-babel": {},
        "@vue/cli-plugin-pwa": {},
        "@vue/cli-plugin-eslint": {
          "config": "prettier",
          "lintOn": [
            "save"
          ]
        },
        "@vue/cli-plugin-unit-mocha": {},
        "@vue/cli-plugin-e2e-cypress": {}
      },
      "router": true,
      "routerHistoryMode": false,
      "vuex": true,
      "cssPreprocessor": "sass"
    }

After the project is finished installing, change directories and run one of the "How To Use" npm commands to begin development.

How to Use

Github

  1. Zip this project root folder and save from Github
  2. Unzip folder and open a code editor (Shell, TextEditor, IDE) of your choice at the root folder
  3. Run the following command to get your Node_Modules
npm install
  1. Run the following command to begin development)
npm run extension
  1. Open Google Chrome
  2. Go to: Chrome Settings > More Tools > Extensions
  3. Turn on Developer Mode near the top right of the extension page
  4. Click "Load Unpacked" near the top left of your listed extensions
  5. Select the "dist" folder of the project directory.
  6. Click "Select"
  7. You should see a new extension appear in your list called "Momentum-Clone"
  8. Open and new tab and you have your application running.

Compiles and minifies with hot-reload for Chrome Web Browser

npm run extension

Compiles and minifies for production

npm run build

Lints and fixes files

npm run lint

Run your unit tests

npm run test:unit

Run your end-to-end tests

npm run test:e2e

Contribute

Credits

Special thanks to the wonderful people that have created all the following technologies. I used parts of these projects as inspiration for my own. All code samples or tutorials that I used, if not mentioned here, are in acknowledgements.json❤️

  • Infoboard: Infoboard showing photos from local folder as the background, time, weather and Transport for London status updates. Intended for Raspberry Pi, but should work on any machine with NodeJS installed.

License

MIT © - ScotteRoberts

Last Updated

December 17, 2018