├── .gitignore ├── LICENSE ├── README.md ├── history.py ├── images ├── icon.png └── screenshot.png ├── main.py ├── manifest.json └── versions.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KuenzelIT/ulauncher-firefox-bookmarks/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KuenzelIT/ulauncher-firefox-bookmarks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KuenzelIT/ulauncher-firefox-bookmarks/HEAD/README.md -------------------------------------------------------------------------------- /history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KuenzelIT/ulauncher-firefox-bookmarks/HEAD/history.py -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KuenzelIT/ulauncher-firefox-bookmarks/HEAD/images/icon.png -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KuenzelIT/ulauncher-firefox-bookmarks/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KuenzelIT/ulauncher-firefox-bookmarks/HEAD/main.py -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KuenzelIT/ulauncher-firefox-bookmarks/HEAD/manifest.json -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KuenzelIT/ulauncher-firefox-bookmarks/HEAD/versions.json --------------------------------------------------------------------------------