Open in Microsoft Edge ਲਈ ਸਮੀਖਿਆ
Open in Microsoft Edge ਵਲੋਂ Alphalpha
2 ਸਮੀਖਿਆਵਾਂ
- 5 ਵਿੱਚੋਂ 4 ਦਰਜਾ ਦਿੱਤਾ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.
- 5 ਵਿੱਚੋਂ 4 ਦਰਜਾ ਦਿੱਤਾArchimedes Trajano੨ ਸਾਲ ਪਿਛਲੇ ਵਲੋਂ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();
})();