Reviews for Super Speedy Dial (Opera Bookmark Page Speed Dial)
Super Speedy Dial (Opera Bookmark Page Speed Dial) by Wil Gaboury
Review by rattle-snake
Rated 5 out of 5
by rattle-snake, 7 months agoHeavily under rated. Simply the best speed dial !
Please, is it possible to add the ability to open a bookmark using the middle mouse button in order to open a new tab ? (I know ALT+MMB is possible but MMB is shorter and more intuitive)
Edit :
Thank you for your answser and again you project is awesome.
For the moment I made an autoHotKey V2 script to allow opening a new tab using MMB.
Here is the code for any one else :
---------------------------------------------------------
#Requires AutoHotkey v2.0
#SingleInstance Force ; Une seule instance à la fois
; Icône et titre du script
TraySetIcon "Shell32.dll", 124 ; Définit l'icône de la barre des tâches
;TraySetIcon "imageres.dll", 174 ; Définit l'icône de la barre des tâches
A_IconTip := "Floorp Speed Dial MMB" ; Définit le texte d'info-bulle de l'icône de la barre des tâches
; Fonction pour vérifier la fenêtre sous le curseur
MouseIsOver(WinTitle, startText) {
; Déclaration et initialisation des variables
x := y := 0
id := ""
; Utilisation de l'opérateur & pour passer des références aux variables x, y, et id
MouseGetPos(&x, &y, &id)
if (id && WinExist(WinTitle . " ahk_id " . id))
{
; Zone en dessous de 130 uniquement
if (y > 130)
{
title := WinGetTitle("ahk_id " . id)
return StrStartsWith(title, startText)
}
}
return false
}
; Helper pour vérifier le début du titre
StrStartsWith(str, prefix) {
return (SubStr(str, 1, StrLen(prefix)) == prefix)
}
; Utilisation de #HotIf pour conditionner les raccourcis clavier
#HotIf (MouseIsOver("ahk_class MozillaWindowClass", "Super Speedy Dial"))
; Gestion du clic de la molette
~MButton:: {
KeyWait("MButton") ; Attendre que le bouton soit relâché
Send("{Alt Down}{LButton}{Alt Up}")
return
}
#HotIf ; Réinitialiser le contexte
Please, is it possible to add the ability to open a bookmark using the middle mouse button in order to open a new tab ? (I know ALT+MMB is possible but MMB is shorter and more intuitive)
Edit :
Thank you for your answser and again you project is awesome.
For the moment I made an autoHotKey V2 script to allow opening a new tab using MMB.
Here is the code for any one else :
---------------------------------------------------------
#Requires AutoHotkey v2.0
#SingleInstance Force ; Une seule instance à la fois
; Icône et titre du script
TraySetIcon "Shell32.dll", 124 ; Définit l'icône de la barre des tâches
;TraySetIcon "imageres.dll", 174 ; Définit l'icône de la barre des tâches
A_IconTip := "Floorp Speed Dial MMB" ; Définit le texte d'info-bulle de l'icône de la barre des tâches
; Fonction pour vérifier la fenêtre sous le curseur
MouseIsOver(WinTitle, startText) {
; Déclaration et initialisation des variables
x := y := 0
id := ""
; Utilisation de l'opérateur & pour passer des références aux variables x, y, et id
MouseGetPos(&x, &y, &id)
if (id && WinExist(WinTitle . " ahk_id " . id))
{
; Zone en dessous de 130 uniquement
if (y > 130)
{
title := WinGetTitle("ahk_id " . id)
return StrStartsWith(title, startText)
}
}
return false
}
; Helper pour vérifier le début du titre
StrStartsWith(str, prefix) {
return (SubStr(str, 1, StrLen(prefix)) == prefix)
}
; Utilisation de #HotIf pour conditionner les raccourcis clavier
#HotIf (MouseIsOver("ahk_class MozillaWindowClass", "Super Speedy Dial"))
; Gestion du clic de la molette
~MButton:: {
KeyWait("MButton") ; Attendre que le bouton soit relâché
Send("{Alt Down}{LButton}{Alt Up}")
return
}
#HotIf ; Réinitialiser le contexte
Developer response
posted 7 months agoThanks for the review! Right now, the bookmark tiles use the same shortcuts as a standard link. Ctrl + left click will open the bookmark in a new tab and switch to it. Alt + left click will open the bookmark in a new tab in the background.
The ability to change shortcuts is something I hope to implement at some point in the future.
The ability to change shortcuts is something I hope to implement at some point in the future.
17 reviews
- Rated 5 out of 5by Firefox user 17479995, 12 days agoThe best Speed Dial. The idea of using bookmarks instead of relying on a different set of user defined URLs makes Super Speedy Dial super easy to setup and synchronize across devices. I really love its simplicity. Thanks!
- Rated 5 out of 5by Firefox user 18346451, 7 months ago
- Rated 5 out of 5by Firefox user 18247438, a year agoBest Solution Available, Please release for Firefox for Android and Chrome.
Developer response
posted 7 months agoThanks for the review! This addon will be coming to the chrome store when I have time to polish it up a bit more, but it should be fully functional at the current moment, you just have to load the zip file manually. The download can be found here: https://github.com/wilgaboury/super-speedy-dial/releases - Rated 4 out of 5by klingon666, a year ago
- Rated 5 out of 5by Firefox user 14259542, 2 years agoExcellent bookmark dialing extension
Lack of basic functionality,
Middle click on the link to open the backend (multiple links can be opened without leaving the SSD);
Middle click on the folder to open all links within the folder (replacing "Open Children");
In addition, I hope to customize CSS, such as making the previous button wider or only having the full width of the previous button (covering all available widths, bookmarks generally do not exceed 3 levels), so that you can return to the previous level without accurately moving the mouse. If possible, double click on the blank space to return to the previous levelDeveloper response
posted 2 years agoGreat idea! And thank you for the feedback. The background open feature will be in the next release: doing an alt + click on a folder or bookmark will open in a new tab and not switch to it.
As of version 3.0.2, there is support for custom CSS by opening the settings and selecting the curly brace icon in the upper right.
If you want to make the back button wider try this css:
.breadcrumb-container > button:first-of-type {
width: 60px;
display: flex;
justify-content: center;
}
Hope that addresses the issues you were having. If you have more suggestions, I would encourage you to open a discussion on the github page. - Rated 5 out of 5by Vedun, 2 years ago
- Rated 5 out of 5by Firefox user 13472173, 2 years ago
- Rated 1 out of 5by DIX56, 2 years ago
- Rated 5 out of 5by Stilllife, 2 years ago
- Rated 3 out of 5by Rusty Trombone, 2 years agoVery clever and promising, but no options to set number of colums or rows means scrolling and then it's not not super speedy, not even speedy. It's then just a dial, or bookmarks tbpf.
Developer response
posted 2 years agoWill be adding the ability to change tile size in an upcoming version. Also hopefully it will be faster as well ;)
Edit: This feature is now supported! - Rated 5 out of 5by hacKim, 3 years agoExactly what I was looking for!
-there is no way to open all links in a bookmark folder, or select multiple links to open :/Developer response
posted 3 years agoDidn't think this would be a desired feature but I can see about adding it when I feel inspired to work on this add-on more.
Edit 2/29/2023
I'm going to be adding the ability to open all items in a folder soon in an upcoming version
Edit: This feature is now supported! - Rated 5 out of 5by Firefox user 17032357, 3 years agoCool add-on! It really helpful, and I definitely recommend trying it!
- Rated 4 out of 5by Xyrer, 3 years agoIt fails to load several thumbnails and it lacks the option to set your custom image, but I like how it lets me use my own bookmarks
Developer response
posted 3 years agoThanks for the feedback. Adding a custom thumbnail is a feature I would like to add at some point but is quite a bit of work, so I simply have not gotten around to it. Not all websites have an easily retrievable image in their html which causes some of them to not load anything. Also, try clicking the reload button that appears when hovering over a bookmark, as that will try and download a new thumbnail.
Edit - 5/30/2023: this feature will be coming hopefully within a couple months - Rated 5 out of 5by Ryan Rosenthal, 4 years agoThis add-on is great! It's intuitive to use, beautiful to look at and is way more helpful than I expected. I had no idea how useful this would be - but now I use it all the time.. I definitely recommend trying it. Hats off to the dev for making such an awesome add-on!
- Rated 5 out of 5by Winnie, 4 years ago
- Rated 5 out of 5by Firefox user 16221019, 4 years ago