demo.mov
DuckDuckGo's !Bangs, but on steroids.
@actions
- Quick access to your actions@bookmarks
- View your bookmarks@settings
- Access settings
!bm [url]
- Add a bookmark!add [trigger] [url]
- Create a custom bang- Custom bangs you create with
!add
-
In your browser settings, add a new search engine:
- Name: Whatever you prefer (e.g., "Bang")
- Shortcut:
bd
(or any keyword you prefer) - URL:
http://bang.jaw.dev/?q=%s
-
Now you can use Bang directly from your browser's address bar:
!bm https://bang.jaw.dev
- Chrome: Settings → Search Engines → Manage Search Engines → Add
- Firefox: Bookmarks → Manage Bookmarks → Right-click → New Bookmark → Add %s in URL
- Edge: Settings → Privacy, search, and services → Address bar and search → Manage search engines → Add
javascript: (function () {
const link = encodeURIComponent(window.location.href).trim();
if (!link) return;
window.location.href = `http://bang.jaw.dev/?q=!bm ${link}`;
})();
javascript: (function () {
const trigger = prompt('please enter a trigger').trim();
if (!trigger) return;
const link = encodeURIComponent(window.location.href).trim();
if (!link) return;
window.location.href = `http://bang.jaw.dev/?q=!add !${trigger} ${link}`;
})();
- See ROADMAP for
roadmap
guide. - See DEVELOPMENT for
development
guide. - See CONTRIBUTION for
contribution
guide.
Distributed under the MIT License © wajeht. See LICENSE for more information.