Skip to content

Commit 36374ea

Browse files
committed
Release v1.3.2
1 parent 4204456 commit 36374ea

File tree

20 files changed

+1387
-515
lines changed

20 files changed

+1387
-515
lines changed
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Build and Release
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*'
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
permissions:
12+
contents: write
13+
14+
steps:
15+
- name: Checkout code
16+
uses: actions/checkout@v4
17+
18+
- name: Setup Node.js
19+
uses: actions/setup-node@v4
20+
with:
21+
node-version: '20'
22+
23+
- name: Build XPI
24+
run: |
25+
# Create the .xpi file by zipping contents associated with the extension
26+
# Exclude git directories, DS_Store, node_modules, and the xpi itself if it exists
27+
zip -r rep-plus.xpi * -x "*.git*" -x "*.DS_Store" -x "node_modules/*" -x "*.xpi" -x ".github/*"
28+
29+
- name: Create Release
30+
uses: softprops/action-gh-release@v1
31+
with:
32+
files: rep-plus.xpi
33+
draft: false
34+
prerelease: false
35+
generate_release_notes: true

README.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,6 @@ rep+ is a lightweight Firefox DevTools extension inspired by Burp Suite's Repeat
3434

3535
## 🚀 Install rep+ Extension
3636

37-
### Chrome
38-
[![rep+](https://img.shields.io/badge/rep%2B%20Chrome%20Extension-Install%20Now-4285F4?style=for-the-badge&logo=googlechrome&logoColor=white)](https://chromewebstore.google.com/detail/rep+/dhildnnjbegaggknfkagdpnballiepfm)
39-
4037
### Firefox
4138
🦊 **Now Available!** Clone and load manually (see [Installation](#installation) below).
4239

@@ -241,7 +238,7 @@ See [Auth Analyzer Documentation](#auth-analyzer-setup) for detailed setup and u
241238

242239
1. **Clone the repository**:
243240
```bash
244-
git clone https://github.com/h0tak88r/rep-firefox.git
241+
git clone https://github.com/bscript/rep.git
245242
cd rep-firefox
246243
```
247244
2. **Open Firefox Debugging**:
@@ -377,7 +374,7 @@ rep+ is best for quick testing, replaying, and experimenting — not full low-le
377374

378375
## Star History
379376

380-
[![Star History Chart](https://api.star-history.com/svg?repos=repplus/rep-firefox&type=date)](https://www.star-history.com/#repplus/rep-firefox&type=date)
377+
[![Star History Chart](https://api.star-history.com/svg?repos=bscript/rep&type=date)](https://www.star-history.com/#bscript/rep&type=date)
381378

382379

383380
## Found a Bug or Issue?

0 commit comments

Comments
 (0)