Skip to content

Commit

Permalink
Documentation added with Minor changes to code.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mati02K committed Apr 8, 2022
1 parent f212073 commit 195ab31
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 5 deletions.
28 changes: 26 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,26 @@
# Quasar-Developer-Tools
This File is for developing Quasar Developer Tools Extension.
# Quasar Developer Tools
### Built By Quasar Community for the Community.
The Quasar Developer Tools has some of the basic tools required by the developers while building their projects like basic emulation of some popular devices to test their design and a API tester to test their API calls.

### File Structure
* HTML
* Popup ---> Main entry file which appears on extension click.
* request ---> Api Test page of the extension.
* CSS
* request --> Css for Request.html.
* popup ---> Css for Popup.html.
* Vendor ---> External library files.
* JS
* Vendor ---> External library files.
* Popup ---> JS for popup.html.
* Request ---> JS for request.html.
* Eventpage ---> Service Worker running in the background.
* Content ---> Content Script which will return the current URL of the user.
* Icons (All Icons)
* Manifest.json

## Contributing Guidelines
This is open source tool and is currently at a beginning phase, anyone can contribute to this project by first forking the repository to your account, making the changes and then creating a pull request. Make sure you explain breifly about what you did in the comments in the PR, so that it will be helpful for the reviewer to approve the changes.
## Developed by Quasar Community
![Quasar Community Logo](https://github.com/Quasar-Community/Quasar-Developer-Tools/blob/main/icons/Quasar_Community_Logo.png?raw=true)

4 changes: 2 additions & 2 deletions html/request.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
<link href="https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;600&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap" rel="stylesheet">
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" href="/css/request.css">
<link href="../css/vendor/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="../css/request.css">

</head>
<body>
Expand Down
1 change: 0 additions & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
"default_icon" : "icons/logo128.png",
"default_popup" : "html/popup.html"
},
"options_page" : "html/popup.html",
"background" : {
"service_worker": "js/eventPage.js"
},
Expand Down

0 comments on commit 195ab31

Please sign in to comment.