hifocus / instapp

Get apps instantly via web. (This project is currently deprecated, aside from some infrequent fixes)
https://get.js.org
MIT License
150 stars 15 forks source link
apps get hacktoberfest instantly via web

Get Apps

Version Author Contributors Contributors Forks Jekyll License Status Author

😎 Everything can be downloaded via Get Apps!

Introduction

Get Apps is an online service that helps you download applications and resources with a simple link. Our Blog Posts

Current Support List: View https://get.js.org/apps

Features

How to Use It

Normal Usage

Alias System

How Does It Work

Currently we support more than 50 apps, you may find them in https://get.js.org/apps.

First Get Apps will identify your OS:

<script>
    if (/(x64|WOW64)/i.test(navigator.userAgent)) {
        window.location.href = "https://latest.app";
    }
    if (/(x86_64)/i.test(navigator.userAgent)) {
        window.location.href = "https://latest.app";
    }
    if (/(Macintosh)/i.test(navigator.userAgent)) {
        window.location.href = "https://latest.app";
    }
    // If this app does not support a platform
    if (/(iPhone|iPod)/i.test(navigator.userAgent)) {
        alert("This app does not work on your device.");
        }
    if (/(iPad)/i.test(navigator.userAgent)) {
        alert("This app does not work on your device.");
    }
    if (/(Android)/i.test(navigator.userAgent)) {
        alert("This app does not work on your device.");
    }
</script>

As preperation, we use the developer tools in Chrome to get download links for specific apps significiant app. For example, the download link for Atom is as follows:

https://atom.io/download/windows_x64

This link will automattically redirect you to the the latest stable version of Atom (this one is for Windows 64 bit), which looks like this:

https://atom-installer.github.com/v1.28.2/AtomSetup-x64.exe

Therefore we are able to serve you with the latest version of the app. We can also find permanent links in other ways, such as relying on third-party APIs.

Join Us

If you have any ideas or requests,you may tell us in Issue , at the same time we welcome all kinds of pull requests.

Submit New App Support

  1. Check out https://get.js.org/apps to make sure it is not currently supported

  2. Get Apps is based on Jekyll. Make sure you have the appropriate development environment.

  3. Fork this repo. Clone to local.

  4. Add our formatted scripts with the permanent download links in _posts\{appname}\{year}-{month}-{date}-{appname}.md

  5. Submit a pull request.

Join Our Discussion

  1. GitHub Issue
  2. QQ Chat Group

Deployment

  1. Make sure you have the Jekyll development environment.
  2. Clone to local.
  3. cd path/to/repo/Get
  4. jekyll s

Sponsored the Development of Get Apps

Honestly, this project is not complicated and may not be worth your donation to us. In this case, star might be a good choice!

But if you really want to donate us, you are more than welcome to do so.

Sponsor

Author

Get Apps © Huangxin, Released under the MIT License.
Authored and maintained by Huangxin with help from contributors.

Blog @Tech HXCO · GitHub @hifocus


Notice: This README.md draws on RSSHub.