Replies: 1 comment 1 reply
-
Also, if you wanted a single "Chooser" popup that presents a list of options you could use this for a single bookmarklet in all browsers:
Note that you would want to update this part of the Bookmarklet for browsers you care about: |
Beta Was this translation helpful? Give feedback.
-
I created this Bookmarklet, repeated in each browser I use as ...
Chrome (default profile):
Name: !Chrome
Address:
javascript:var%20url=window.location.href;var%20op='?';if(window.location.search){op='&';}url=url+op+'finicky=chrome';url=url.replace(window.location.protocol,'finicky:');window.location.href=url;
Chrome (profile 1):
Name: !Chrome Profile 1 *
Address:
javascript:var%20url=window.location.href;var%20op='?';if(window.location.search){op='&';}url=url+op+'finicky=chrome-profile-1';url=url.replace(window.location.protocol,'finicky:');window.location.href=url;
* Finicky supports opening Chrome + a specific Chrome user's profile
Brave:
Name: !Brave
Address:
javascript:var%20url=window.location.href;var%20op='?';if(window.location.search){op='&';}url=url+op+'finicky=brave';url=url.replace(window.location.protocol,'finicky:');window.location.href=url;
Safari:
Name: !Safari
Address:
javascript:var%20url=window.location.href;var%20op='?';if(window.location.search){op='&';}url=url+op+'finicky=safari';url=url.replace(window.location.protocol,'finicky:');window.location.href=url;
... then in my .finicky.js file:
Each bookmarklet will convert the page's URL to open with Finicky & process your rules, allowing Finicky to open the URL in an alternate browser.
So https://github.com/johnste/finicky/ ...
... becomes: finicky://github.com/johnste/finicky/?finicky=brave or safari, etc.
This is in addition to other handlers for email, Slack & so on.
Beta Was this translation helpful? Give feedback.
All reactions