From 821087a20ecf4eb9e058e37d22a0fe2e09fe308c Mon Sep 17 00:00:00 2001 From: Baldomo Date: Mon, 26 Jul 2021 18:53:33 +0200 Subject: [PATCH] Updated README with links (and submitted Firefox extension to AMO) --- Chrome/README.md | 2 +- Makefile | 6 +++--- README.md | 7 +++++++ 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/Chrome/README.md b/Chrome/README.md index f470931..3d15cc1 100644 --- a/Chrome/README.md +++ b/Chrome/README.md @@ -1,3 +1,3 @@ # Open In mpv (Chrome) -This code is a copy of [Chrome_Open_In_IINA](https://github.com/iina/iina/tree/develop/browser/Chrome_Open_In_IINA) \ No newline at end of file +This code is a modified copy of [Chrome_Open_In_IINA](https://github.com/iina/iina/tree/develop/browser/Chrome_Open_In_IINA) \ No newline at end of file diff --git a/Makefile b/Makefile index 89c4792..60806a9 100644 --- a/Makefile +++ b/Makefile @@ -7,10 +7,10 @@ SRCS = src/curl.hpp \ all: release firefox -release: +release: $(SRCS) $(CXX) $(CXXFLAGS_release) -o open-in-mpv src/main.cpp -debug: +debug: $(SRCS) $(CXX) $(CXXFLAGS_debug) -o open-in-mpv src/main.cpp install: release @@ -30,4 +30,4 @@ clean: fmt: clang-format -i src/*.{hpp,cpp} -.PHONY: all release debug install uninstall firefox clean fmt \ No newline at end of file +.PHONY: all release debug install uninstall firefox clean fmt diff --git a/README.md b/README.md index 6915c10..957e0e3 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,12 @@

open-in-mpv

+

+ + +

+ +--- + This is a simple web extension (for Chrome and Firefox) which helps open any video in the currently open tab in the [mpv player](https://mpv.io). The extension itself shares a lot of code with the one from the awesome [iina](https://github.com/iina/iina), while the (bare) backend is written in C++20 (this is a rewrite from Rust).