Convert your browser bookmarks to web shortcut files (.url
, .webloc
, .desktop
) to be able to use them on your desktop and in your file explorer.
First you have to export your bookmarks from your browsers, use the following links to navigate directly to your browsers bookmark manager.
-
opera://bookmarks
-
chrome://bookmarks
-
edge://favorites
<?php
require_once dirname(__DIR__) . '/src/BookmarkToShortcut.php';
use Devidw\BookmarkToShortcut\BookmarkToShortcut;
$converter = new BookmarkToShortcut(
__DIR__ . '/in', // source directory
__DIR__ . '/out', // destination directory
['url', 'webloc', 'desktop'] // formats to write
);
$converter->convert();