https://github.com/octoprint/open-in-bundle-viewer
Adds 'Open in bundle viewer' to the context menu to open a link in the OctoPrint bundle viewer
https://github.com/octoprint/open-in-bundle-viewer
browser-extension bundle-viewer devtool support-tool
Last synced: 3 months ago
JSON representation
Adds 'Open in bundle viewer' to the context menu to open a link in the OctoPrint bundle viewer
- Host: GitHub
- URL: https://github.com/octoprint/open-in-bundle-viewer
- Owner: OctoPrint
- License: mit
- Created: 2021-02-03T18:26:44.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-14T18:18:14.000Z (almost 3 years ago)
- Last Synced: 2024-12-29T02:00:20.585Z (about 1 year ago)
- Topics: browser-extension, bundle-viewer, devtool, support-tool
- Language: JavaScript
- Homepage:
- Size: 869 KB
- Stars: 2
- Watchers: 4
- Forks: 1
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Funding: .github/funding.yml
- License: LICENSE
Awesome Lists containing this project
README
## OctoPrint Open In Bundle Viewer
This is a simple browser extension that adds an entry to the context menu to open a file using https://bundleviewer.octoprint.org



You can add it to Chrome from the [Chrome Web Store](https://chrome.google.com/webstore/detail/open-in-bundle-viewer/pjjocccheogfceldegkfnbfmobmblhpp). This also allows you to install it in the new Microsoft Edge.
You can add it to Firefox from the [Firefox add-on store](https://addons.mozilla.org/en-GB/firefox/addon/open-in-bundle-viewer/).
## Development
### Running in watch mode
```
npm install
npm run watch
```
This will output to the `distribution` folder, point the browser there for an 'unpacked' extension.
### Building a new release
```
npm install
npm run build
```
Zip the distribution folder and upload to the stores. Firefox also needs the source zip, which can be found on Github.
## Changelog
#### 1.2.0
* Remove unused template code
* Add ESLint configuration & run
* Upgrade all dependencies (avoiding security issues)
* Enable Dependabot regular updates
#### 1.1.0
* Tab opens alongside current, contributed by [@foosel](https://github.com/foosel) ([#1](https://github.com/OctoPrint/Open-in-Bundle-Viewer/pull/1))
#### 1.0.0
* Extension released
## License
Please see [LICENSE](https://github.com/OctoPrint/Open-in-Bundle-Viewer/blob/master/LICENSE) for license information.
Originally based on [browser-extension-template](https://github.com/fregante/browser-extension-template).