-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Documentation added with Minor changes to code.
- Loading branch information
Showing
3 changed files
with
28 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters