-
Notifications
You must be signed in to change notification settings - Fork 37
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
Showing
54 changed files
with
4,706 additions
and
3,488 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
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,6 @@ | ||
# initial formatting from dprint transition | ||
826ac79d9225a3bc4f7a5312b5f20cf993eba491 | ||
a1104a469541b44745bbc5ec2ccfcf7082ad6d33 | ||
aa5c5a24c366d37f328e190d9172d26da7fc8d52 | ||
6124856eb8878c7d7c924d3794f656bc0a2ebf33 | ||
89fd701c2ab3387516f90425b716b3aac3d1e627 |
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 |
---|---|---|
@@ -1,22 +1,12 @@ | ||
name: tests | ||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
on: [push, pull_request] | ||
jobs: | ||
test: | ||
# The type of runner that the job will run on | ||
ci: | ||
runs-on: ubuntu-latest | ||
|
||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Run eslint | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '16' | ||
- run: npm install | ||
- run: npm run eslint | ||
env: | ||
CI: true | ||
- uses: actions/setup-node@v3 | ||
- run: npm ci | ||
- run: npm run fmt | ||
- run: npm run lint | ||
- 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 |
---|---|---|
@@ -1,16 +1,16 @@ | ||
Toolbox has access to the same information on reddit as the account(s) with which you use it. | ||
Toolbox has access to the same information on reddit as the account(s) with which you use it. | ||
|
||
The toolbox development team highly values privacy, these are the measures we have taken in order to protect the privacy of people using toolbox: | ||
The toolbox development team highly values privacy, these are the measures we have taken in order to protect the privacy of people using toolbox: | ||
|
||
- Toolbox purposely lacks the technical means to send back any data back to the toolbox development team. ^[1] | ||
- Any data accessed is used for toolbox functionality. | ||
- If accessed data needs to be stored it is either stored on reddit (user notes, toolbox subreddit configuration, settings export) or in the local browser extension settings (personal settings, cache). No data is stored outside of reddit or out of reach of the person using toolbox. | ||
- Data stored on reddit is stored through wiki pages. It is only stored in wiki pages of subreddits where the account using toolbox has access as moderator with the permissions to edit those pages. Any write action on a wiki page is accompanied with a settings change on the wiki page that makes sure only moderators have access to the written data. | ||
- Any data accessed is used for toolbox functionality. | ||
- If accessed data needs to be stored it is either stored on reddit (user notes, toolbox subreddit configuration, settings export) or in the local browser extension settings (personal settings, cache). No data is stored outside of reddit or out of reach of the person using toolbox. | ||
- Data stored on reddit is stored through wiki pages. It is only stored in wiki pages of subreddits where the account using toolbox has access as moderator with the permissions to edit those pages. Any write action on a wiki page is accompanied with a settings change on the wiki page that makes sure only moderators have access to the written data. | ||
|
||
--- | ||
|
||
*[1]* toolbox is open-source, you can check the code and used webextension permissions on the repository here. No code is modified before the extension is released to the chrome store or mozilla AMO. Here is how you access the code of the installed version to verify this claim: | ||
_[1]_ toolbox is open-source, you can check the code and used webextension permissions on the repository here. No code is modified before the extension is released to the chrome store or mozilla AMO. Here is how you access the code of the installed version to verify this claim: | ||
|
||
- Edge: `C:\Program Files\WindowsApps` will contain the installed extension. | ||
- Chrome: Open `chrome://version/` and look for `Profile Path` which is the directory containing extensions. | ||
- Firefox: Navigate to [your profile directory](https://support.mozilla.org/en-US/kb/profiles-where-firefox-stores-user-data) and then to the `extensions` subdirectory. You'll find `[email protected]` which can be opened as zip file. | ||
- Chrome: Open `chrome://version/` and look for `Profile Path` which is the directory containing extensions. | ||
- Firefox: Navigate to [your profile directory](https://support.mozilla.org/en-US/kb/profiles-where-firefox-stores-user-data) and then to the `extensions` subdirectory. You'll find `[email protected]` which can be opened as zip file. |
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
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,35 @@ | ||
{ | ||
"typescript": { | ||
"lineWidth": 120, | ||
"indentWidth": 4, | ||
"useTabs": false, | ||
"quoteStyle": "alwaysSingle", | ||
"quoteProps": "consistent", | ||
"useBraces": "always", | ||
"arrowFunction.useParentheses": "preferNone", | ||
"enumDeclaration.memberSpacing": "newLine", | ||
"spaceSurroundingProperties": false, | ||
"exportDeclaration.spaceSurroundingNamedExports": false, | ||
"importDeclaration.spaceSurroundingNamedImports": false, | ||
"constructor.spaceBeforeParentheses": true, | ||
"functionDeclaration.spaceBeforeParentheses": true, | ||
"functionExpression.spaceBeforeParentheses": true, | ||
"getAccessor.spaceBeforeParentheses": true, | ||
"setAccessor.spaceBeforeParentheses": true, | ||
"method.spaceBeforeParentheses": true | ||
}, | ||
"json": { | ||
"indentWidth": 4 | ||
}, | ||
"markdown": {}, | ||
"excludes": [ | ||
"**/node_modules", | ||
"**/*-lock.json", | ||
"build" | ||
], | ||
"plugins": [ | ||
"https://plugins.dprint.dev/typescript-0.86.1.wasm", | ||
"https://plugins.dprint.dev/json-0.17.4.wasm", | ||
"https://plugins.dprint.dev/markdown-0.15.3.wasm" | ||
] | ||
} |
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 |
---|---|---|
|
@@ -101,4 +101,4 @@ | |
] | ||
} | ||
] | ||
} | ||
} |
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
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
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
Oops, something went wrong.