One-Stop solution for clumsy bookmarks. Helpage lets you organize your custom bookmarks and most visited sites onto a basic HTML5 webpage.
Helpage is a Webpage Designed with the intention to cut down the need for any regular browser's favorites tab. Moreover, It has bookmarks just similar to a regular browser.
Helpage has been tried and tested over months of usage. It has witnessed Hundreds of ✅Changes, ⏫Upgrades, 📈Improvements and 🐞 Bug Fixes as and when Required. It's possible because of the collaborative 🤝 efforts of the team.
- Copy the URL
https://devanshuyadav.github.io/helpage/
- Go to your Browser/s settings.
- Under 'OnStartup' (or any similar option) , Select 'Open a Specific Page or set of pages'.
- Add New Page and Paste the Copied URL.
- And, You're Good to Go. 👍
Now everytime you open your browser, you'll have all your selected websites at one place.
-
Fork the Repository.
-
Clone the Repository to your Local Environment.
-
Once the Repository has been cloned you have to open it in Git bash.
-
Create a branch specific to the issue you are working on.
git checkout -b your-branch-name
For clarity, name your branch
update-xxx
orfix-xxx
. Thexxx
is a short description of the changes you're making. Examples includeupdate-readme
orfix-typo-on-contribution-md
. -
Open up the project in your favorite text editor, select the file you want to contribute to, and make your changes.
-
Add your modified files to Git.
git add path/to/filename.ext
You can also add all unstaged files using:
git add .
Note: using a
git add .
will automatically add all files. You can do agit status
to see your changes, but do it beforegit add
. -
Commit your changes using a descriptive commit message.
git commit -m "Brief Description of Commit"
-
Verify that the origin is your own forked branch and not the main repository.
git remote --verbose
-
Push your commits to your GitHub Fork:
git push -u origin your-branch-name
-
Submit a pull request. Within GitHub, visit this main repository and you should see a banner suggesting that you make a pull request. While you're writing up the pull request, you can add
Closes #XXX
in the message body where#XXX
is the issue number you're fixing. Therefore, an example would beCloses #42
would close issue#42
.
-
In Order to add a new icon to Helpage, you'll need the following beforehand:
LINK
to the Website you want to add.- An
IMAGE/SVG
for the Logo of the Concerned Website (or Any Relevant Reference Picture you want to have).
-
Upload the
IMAGE/SVG
, intoassets/
folder with an Appropriate Name ( let's call it ICON_1 for example ) and Extension ( .png, .jpg, .jpeg, .svg are some of the extension that'll work fine ).- Your File should have a relative path similar to
assets/ICON_1.png
(For Example).
- Your File should have a relative path similar to
-
Once you've gathered everything listed above and added the Logo
- Open
Index.html
and find<ADD ICON HERE>
. - You'll have to decide where exactly you want to add your new icon in the page & find exactly that particular
<ADD ICON HERE>
comment.
- Open
-
Copy and Paste the following lines of code on the line JUST ABOVE the
<ADD ICON HERE>
Comment.<!-- <ADD ICON HERE> --> <!-- <INSERT NAME> --> <div class="col-sm-4 col-4 col-lg-2 col-md-3"> <div class="icons dark-elem"> <a href=" <ADD LINK HERE> " target="_blank"> <img src="assets/<NAME OF IMAGE/SVG>" alt="<ALT TEXT>" height="100px"> </a> </div> </div>
Update the folllowing Values accordingly.
<INSERT NAME>
: Name of Website You've Linked.<ADD LINK HERE>
:LINK
to the Website.<NAME OF IMAGE/SVG>
: Name of The Logo Image/SVG file added toassets/
folder ( For this Example -ICON_1.png
)<ALT TEXT>
: Name of Website You've Linked.
- Find the
<ADD ICON HERE>
comments Above and Below the Icon you want to remove. - Delete everything in between the two comments.
- Remove Any ONE of the
<ADD ICON HERE>
comments. ( Optional but Recommended )
-
Find
<ADD BOOKMARK HERE>
inIndex.html
. -
Copy and Paste the following lines of code on the line JUST ABOVE the
<ADD BOOKMARK HERE>
comment.<!-- <ADD BOOKMARK HERE> --> <a href="<ADD BOOKMARK LINK>" class="dropdown-item"><INSERT BOOKMARK NAME></a>
Update the following values accordingly:
<ADD BOOKMARK LINK>
: Link to the Bookmarked Website.<INSERT BOOKMARK NAME>
: Name of the Bookmarked site.
-
Additionally, if you want a Bookmark Divider, Paste the following line at Required place.
<div class="dropdown-divider"></div>
- Find the
<ADD BOOKMARK HERE>
comment Above and Below the Bookmark you want to remove. - Delete everything in between the comments.
- Remove Any ONE of the
<ADD BOOKMARK HERE>
comments. ( Optional but Recommended )