https://github.com/natoboram/bookmarklets
My personal collection of bookmarklets.
https://github.com/natoboram/bookmarklets
bookmarklets
Last synced: about 2 months ago
JSON representation
My personal collection of bookmarklets.
- Host: GitHub
- URL: https://github.com/natoboram/bookmarklets
- Owner: NatoBoram
- License: gpl-3.0
- Created: 2025-08-10T21:13:23.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2025-08-10T22:28:26.000Z (about 2 months ago)
- Last Synced: 2025-08-11T00:17:46.883Z (about 2 months ago)
- Topics: bookmarklets
- Language: TypeScript
- Homepage:
- Size: 33.2 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yaml
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Bookmarklets
[](https://github.com/NatoBoram/bookmarklets/actions/workflows/node.js.yaml) [](https://github.com/NatoBoram/bookmarklets/actions/workflows/github-code-scanning/codeql) [](https://github.com/NatoBoram/bookmarklets/actions/workflows/dependabot/dependabot-updates)
My personal collection of bookmarklets.
## Bookmarklets
- Open the current page in a new window with a specific resolution:
- [1080p](./src/window_open/1080p.js)
- [720p](./src/window_open/720p.js)
- [640p](./src/window_open/640p.js)
- [Feature graphic (1024x500)](./src/window_open/feature_graphic.js)
- [Archive GitHub notifications](./src/archive_github_notifications.js)## Usage
1. Copy the code from the desired bookmarklet file
2. Create a new bookmark in your browser
3. In the URL field, type `javascript:` then paste the bookmarklet's codeThe bookmarklet should look like this:
```log
javascript:(() => { "use strict"; window.open(location.href, "1080p", "width=1920,height=1080"); })();
```