-
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
0 parents
commit 9d593ff
Showing
105 changed files
with
42,152 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,3 @@ | ||
{ | ||
"presets": ["@babel/preset-env", "@babel/preset-react"] | ||
} |
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,37 @@ | ||
{ | ||
"root": true, | ||
"extends": ["prettier", "plugin:@typescript-eslint/recommended"], | ||
"plugins": ["prettier", "@typescript-eslint"], | ||
"parser": "@typescript-eslint/parser", | ||
"rules": { | ||
"prettier/prettier": "error", | ||
"@typescript-eslint/no-explicit-any": 1, | ||
"@typescript-eslint/no-var-requires": 0, | ||
"@typescript-eslint/ban-ts-comment": 0, | ||
"no-undef": "error", | ||
"padding-line-between-statements": "error" | ||
}, | ||
"parserOptions": { | ||
"sourceType": "module", | ||
"ecmaVersion": "latest" | ||
}, | ||
"env": { | ||
"webextensions": true, | ||
"es6": true, | ||
"browser": true, | ||
"node": true | ||
}, | ||
"settings": { | ||
"import/resolver": "typescript" | ||
}, | ||
"ignorePatterns": [ | ||
"node_modules", | ||
"zip", | ||
"build", | ||
"wasm", | ||
"tlsn", | ||
"util", | ||
"plugins", | ||
"webpack.config.js" | ||
] | ||
} |
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,46 @@ | ||
name: build | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
|
||
- uses: pnpm/action-setup@v2 | ||
name: Install pnpm | ||
with: | ||
version: 8 | ||
run_install: false | ||
|
||
- name: Get pnpm store directory | ||
shell: bash | ||
run: | | ||
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV | ||
- uses: actions/cache@v3 | ||
name: Setup pnpm cache | ||
with: | ||
path: ${{ env.STORE_PATH }} | ||
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | ||
restore-keys: | | ||
${{ runner.os }}-pnpm-store- | ||
- name: Install dependencies | ||
run: pnpm install | ||
|
||
- name: Build | ||
run: npm run build |
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,46 @@ | ||
name: lint | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
|
||
- uses: pnpm/action-setup@v2 | ||
name: Install pnpm | ||
with: | ||
version: 8 | ||
run_install: false | ||
|
||
- name: Get pnpm store directory | ||
shell: bash | ||
run: | | ||
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV | ||
- uses: actions/cache@v3 | ||
name: Setup pnpm cache | ||
with: | ||
path: ${{ env.STORE_PATH }} | ||
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | ||
restore-keys: | | ||
${{ runner.os }}-pnpm-store- | ||
- name: Install dependencies | ||
run: pnpm install | ||
|
||
- name: Lint | ||
run: npm run lint |
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,10 @@ | ||
/target | ||
**/*.rs.bk | ||
Cargo.lock | ||
bin/ | ||
**/node_modules | ||
**/.DS_Store | ||
.idea | ||
build | ||
tlsn/ | ||
zip |
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,8 @@ | ||
build | ||
node_modules | ||
wasm | ||
tlsn | ||
postcss.config.js | ||
webpack.config.js | ||
*.json | ||
*.scss |
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,9 @@ | ||
{ | ||
"printWidth": 80, | ||
"tabWidth": 2, | ||
"semi": true, | ||
"singleQuote": true, | ||
"bracketSpacing": true, | ||
"jsxBracketSameLine": false, | ||
"arrowParens": "always" | ||
} |
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,67 @@ | ||
![MIT licensed][mit-badge] | ||
![Apache licensed][apache-badge] | ||
[![Build Status][actions-badge]][actions-url] | ||
|
||
[mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg | ||
[apache-badge]: https://img.shields.io/github/license/saltstack/salt | ||
[actions-badge]: https://github.com/tlsnotary/tlsn-extension/actions/workflows/build.yaml/badge.svg | ||
[actions-url]: https://github.com/tlsnotary/tlsn-extension/actions?query=workflow%3Abuild+branch%3Amain++ | ||
|
||
<img src="src/assets/img/icon-128.png" width="64"/> | ||
|
||
# Chrome Extension (MV3) for TLSNotary | ||
|
||
> [!IMPORTANT] | ||
> ⚠️ When running the extension against a [notary server](https://github.com/tlsnotary/tlsn/tree/dev/notary-server), please ensure that the server's version is the same as the version of this extension | ||
## License | ||
This repository is licensed under either of | ||
|
||
- [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) | ||
- [MIT license](http://opensource.org/licenses/MIT) | ||
|
||
at your option. | ||
|
||
|
||
## Installing and Running | ||
|
||
### Procedures: | ||
|
||
1. Check if your [Node.js](https://nodejs.org/) version is >= **18**. | ||
2. Clone this repository. | ||
3. Run `npm install` to install the dependencies. | ||
4. Run `npm run dev` | ||
5. Load your extension on Chrome following: | ||
1. Access `chrome://extensions/` | ||
2. Check `Developer mode` | ||
3. Click on `Load unpacked extension` | ||
4. Select the `build` folder. | ||
6. Happy hacking. | ||
|
||
## Building Websockify Docker Image | ||
``` | ||
$ git clone https://github.com/novnc/websockify && cd websockify | ||
$ ./docker/build.sh | ||
$ docker run -it --rm -p 55688:80 novnc/websockify 80 api.x.com:443 | ||
``` | ||
|
||
## Running Websockify Docker Image | ||
``` | ||
$ cd tlsn-extension | ||
$ docker run -it --rm -p 55688:80 novnc/websockify 80 api.twitter.com:443 | ||
``` | ||
|
||
## Packing | ||
|
||
After the development of your extension run the command | ||
|
||
``` | ||
$ NODE_ENV=production npm run build | ||
``` | ||
|
||
Now, the content of `build` folder will be the extension ready to be submitted to the Chrome Web Store. Just take a look at the [official guide](https://developer.chrome.com/webstore/publish) to more infos about publishing. | ||
|
||
## Resources: | ||
|
||
- [Webpack documentation](https://webpack.js.org/concepts/) | ||
- [Chrome Extension documentation](https://developer.chrome.com/extensions/getstarted) |
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,33 @@ | ||
branch_whitelist = [] | ||
disable_changelog = false | ||
from_latest_tag = false | ||
generate_mono_repository_global_tag = true | ||
ignore_merge_commits = false | ||
post_bump_hooks = [] | ||
post_package_bump_hooks = [] | ||
pre_bump_hooks = [ | ||
"echo {{version}}", | ||
] | ||
pre_package_bump_hooks = [] | ||
skip_ci = "[skip ci]" | ||
skip_untracked = false | ||
|
||
[git_hooks] | ||
|
||
[commit_types] | ||
|
||
[changelog] | ||
authors = [ | ||
{username = "0xtsukino", signature = "tsukino"}, | ||
{username = "heeckhau", signature = "Hendrik Eeckhaut"}, | ||
{username = "mhchia", signature = "Kevin Mai-Husan Chia"}, | ||
] | ||
owner = "TLSNotary" | ||
path = "CHANGELOG.md" | ||
remote = "github.com" | ||
repository = "tlsn-extension" | ||
template = "remote" | ||
|
||
[bump_profiles] | ||
|
||
[packages] |
Oops, something went wrong.