✏️ Updated features list, minor UI tweaks
This commit is contained in:
19
README.md
19
README.md
@@ -130,6 +130,25 @@ _History entries can be sorted by any fields_
|
|||||||
|
|
||||||
_Histories can deleted one-by-one or all together_
|
_Histories can deleted one-by-one or all together_
|
||||||
|
|
||||||
|
📁 **Collections**: Keep your API requests organized with collections and folders. Reuse them with a single click.
|
||||||
|
|
||||||
|
**Options:**
|
||||||
|
- Create infinite collections, folders and requests
|
||||||
|
- Edit, delete, move, export, import and replace
|
||||||
|
|
||||||
|
_Export, import and replace collections with JSON files_
|
||||||
|
|
||||||
|
_Collections are synced with local session storage_
|
||||||
|
|
||||||
|
📁 **Proxy**: Enable Proxy Mode from Settings to access blocked APIs
|
||||||
|
|
||||||
|
**Features:**
|
||||||
|
- Hide your IP address
|
||||||
|
- Fixes [CORS](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS) (Cross Origin Resource Sharing) issues
|
||||||
|
- Access APIs served in non-HTTPS (`http://`, `localhost`, etc.)
|
||||||
|
|
||||||
|
_Proxy is hosted by ApolloTV - [Privacy policy](https://apollotv.xyz/legal)_
|
||||||
|
|
||||||
## Demo 🚀 [](https://postwoman.io)
|
## Demo 🚀 [](https://postwoman.io)
|
||||||
|
|
||||||
[https://postwoman.io](https://postwoman.io)
|
[https://postwoman.io](https://postwoman.io)
|
||||||
|
|||||||
@@ -319,9 +319,13 @@
|
|||||||
<input placeholder="Token" name="bearer_token" v-model="bearerToken" />
|
<input placeholder="Token" name="bearer_token" v-model="bearerToken" />
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<p class="align-right"><pw-toggle
|
<div class="flex-wrap">
|
||||||
|
<pw-toggle
|
||||||
:on="!urlExcludes.auth"
|
:on="!urlExcludes.auth"
|
||||||
@change="setExclude('auth', !$event)">Include Authentication in URL</pw-toggle></p>
|
@change="setExclude('auth', !$event)">
|
||||||
|
Include in URL
|
||||||
|
</pw-toggle>
|
||||||
|
</div>
|
||||||
</pw-section>
|
</pw-section>
|
||||||
</div>
|
</div>
|
||||||
<input id="tab-two" type="radio" name="grp" />
|
<input id="tab-two" type="radio" name="grp" />
|
||||||
|
|||||||
@@ -48,17 +48,19 @@
|
|||||||
</ul>
|
</ul>
|
||||||
</pw-section>
|
</pw-section>
|
||||||
<pw-section class="blue" icon="public" label="Proxy">
|
<pw-section class="blue" icon="public" label="Proxy">
|
||||||
<ul class="info">
|
|
||||||
<li><p>Postwoman's Proxy is hosted by ApolloTV.<br>You can read the ApolloTV privacy policy by clicking <a href="https://apollotv.xyz/legal" target="_blank">here</a/>.</p></li>
|
|
||||||
</ul>
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
<pw-toggle
|
<span>
|
||||||
:on="settings.PROXY_ENABLED"
|
<pw-toggle
|
||||||
@change="toggleSetting('PROXY_ENABLED')"
|
:on="settings.PROXY_ENABLED"
|
||||||
>Proxy {{ settings.PROXY_ENABLED ? "enabled" : "disabled" }}</pw-toggle>
|
@change="toggleSetting('PROXY_ENABLED')"
|
||||||
|
>Proxy {{ settings.PROXY_ENABLED ? "enabled" : "disabled" }}</pw-toggle>
|
||||||
|
</span>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
<ul class="info">
|
||||||
|
<li><p>Postwoman's Proxy is hosted by ApolloTV.<br>Read the ApolloTV privacy policy <a href="https://apollotv.xyz/legal" target="_blank">here</a>.</p></li>
|
||||||
|
</ul>
|
||||||
<!--
|
<!--
|
||||||
PROXY SETTINGS URL AND KEY
|
PROXY SETTINGS URL AND KEY
|
||||||
--------------
|
--------------
|
||||||
@@ -80,7 +82,8 @@
|
|||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
.info {
|
.info {
|
||||||
margin-left: 5px;
|
margin-left: 4px;
|
||||||
|
color: var(--fg-light-color);
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user