https://github.com/dcts/url-grabber
grabs the content of the URL after "index.html?"
https://github.com/dcts/url-grabber
Last synced: about 2 months ago
JSON representation
grabs the content of the URL after "index.html?"
- Host: GitHub
- URL: https://github.com/dcts/url-grabber
- Owner: dcts
- Created: 2019-04-16T23:08:37.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-04-23T05:45:36.000Z (about 7 years ago)
- Last Synced: 2026-03-25T23:49:41.750Z (3 months ago)
- Language: JavaScript
- Homepage: https://dcts.github.io/URL-grabber/
- Size: 1.95 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# URL Grabber
Just a simple page that grabs the URL suffix (lets user type in key-value pairs in the URL). The Content needs to be appended to the `/index.html` starting with a `?`. Also each key is seperated from its value by `=` and each key-value pair is seperated by `;` (semicolons). The URL-suffix needs to be structured as follows: `KEY=VALUE;KEY2=VALUE2`, whereas `KEY` is text (string) and `VALUE` is a number. For example:
- https://dcts.github.io/URL-grabber/index.html?Key1=10;Key2=3000;
- https://dcts.github.io/URL-grabber/index.html?Key1=10;
- https://dcts.github.io/URL-grabber/index.html?Key1=10012;Key2=39000;Key3=50;