Відгуки для Open in Microsoft Edge
Open in Microsoft Edge автор Alphalpha
3 відгуки
- Оцінка 4 з 5від Користувач Firefox 19492779, 5 днів томуFantastic small extension that can open tabs in Edge. no additional files need to be downloaded! this is exactly what i needed.
2 suggestions to make this a 5 star rating
1) fix Alt + Shift + E this doesn't work on my instance
2) it would be great if there was a list of domains that would automatically launch. (but the work around is adding microsoft-edge: to the front of the URL (however there is a confirmation popup that comes up) - Оцінка 4 з 5від Toxicus Prime, рік томуKönnten Sie das Addon so konfigurieren, dass ein Link in Edge geöffnet werden kann, wenn Sie die zweite Taste drücken? Entschuldigen Sie mein Deutsch.
- Оцінка 4 з 5від Archimedes Trajano, 2 роки томуThis would be good if we can provide specific URL patterns that would do this automatically.
However for now you can hack it with Grease Monkey
// ==UserScript==
// @name Redirect and Close Tab
// @namespace http://your.namespace.here
// @version 1.0
// @description Change the URL of the current page and close the tab
// add your stuff
// @match https://dev.azure.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var currentURL = window.location.href;
var newURL = "microsoft-edge:" + currentURL;
window.location.href = newURL;
window.close();
})();