forked from hoppscotch/hoppscotch-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
41ac025
commit a849c1e
Showing
1 changed file
with
51 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# Postwoman Extension for Google Chrome | ||
|
||
<a href="https://chrome.google.com/webstore/detail/postwoman-extension-for-c/amknoiejhlmhancpahfcfcfhllgkpbld">![Get the add-on](https://developer.chrome.com/webstore/images/ChromeWebStore_Badge_v2_206x58.png)</a> | ||
|
||
**Haven't tried Postwoman yet ? Try it at [https://postwoman.io/](https://postwoman.io/)** | ||
|
||
<br /> | ||
This extension currently provides the following features to Postwoman. | ||
|
||
- Overrides CORS restrictions for cross-origin requests. | ||
|
||
|
||
### Building & Experimentation | ||
- Setup a local copy of postwoman repo [(Instructions)](https://github.com/liyasthomas/postwoman#developing-) | ||
- Clone the repo | ||
- Then head into the `manifest.json` file and edit it to match this snippet below | ||
|
||
``` | ||
"content_scripts": [ | ||
{ | ||
"matches": [ | ||
"*://*/*", | ||
"https://postwoman.io/", | ||
"https://postwoman.io/*", | ||
"https://postwoman.netlify.com/*", | ||
"https://postwoman.netlify.com/" | ||
], | ||
"js": [ "contentScript.js" ] | ||
} | ||
], | ||
``` | ||
- Run `npm install` | ||
- Run `npm run build` to generate the *dist* folder | ||
- Open Chrome and navigate to `chrome://extensions`, click on Load Unpacked and then select the generated dist folder. | ||
- Copy the generated extension ID and paste it to the `EXTENSION_ID` property in the Postwoman repo's `functions/strategies/ChromeStrategy.js` file. | ||
|
||
<br /> | ||
<br /> | ||
Postwoman is built with help of an amazing group of people. | ||
<br /> | ||
Contribute to Postwoman: <a href="https://github.com/liyasthomas/postwoman">https://github.com/liyasthomas/postwoman</a> | ||
<br/> | ||
|
||
Sponsor Postwoman: [OpenCollective](https://opencollective.com/postwoman) | ||
|
||
|
||
<br /> | ||
<br /> | ||
<p align="center"><b>made with ❤️ by <a href="https://github.com/AndrewBastin">andrew bastin</a></b></p> | ||
|
||
|