You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert

27
-
28
-
Opening PDFs externally:
29
-
30
-

31
-
32
-
All features work on mobile, but were only tested on Android. Mobile uses the native image sharing functionality instead of the clipboard, and it downloads online images temporarily so they can be shared.
33
-
34
-

35
-
36
-
## Installation
37
-
38
-
You can install the plugin via the Community Plugins tab within the Obsidian app.
39
-
[Here](https://obsidian.md/plugins?id=copy-url-in-preview)'s the plugin in Obsidian's Community Plugins website.
40
-
You can install the plugin manually by copying a release to your `.obsidian/plugins/copy-url-in-preview` folder.
41
-
42
-
## Development
43
-
44
-
This plugin follows the structure of the [Obsidian Sample Plugin](https://github.com/obsidianmd/obsidian-sample-plugin), see further details there.
45
-
Contributions are welcome.
46
-
47
-
## Credits
48
-
49
-
Original plugin by [NomarCub](https://github.com/NomarCub).
50
-
If you like this plugin you can sponsor me here on GitHub: [](https://github.com/sponsors/NomarCub), on Ko-fi here: <ahref='https://ko-fi.com/nomarcub'target='_blank'><imgheight='35'src='https://az743702.vo.msecnd.net/cdn/kofi3.png?v=0'alt='Buy Me a Coffee at ko-fi.com' /></a>, or on PayPal here: [](https://paypal.me/nomarcub).
51
-
52
-
[Copying](https://github.com/NomarCub/obsidian-copy-url-in-preview/pull/2)[images](https://github.com/NomarCub/obsidian-copy-url-in-preview/pull/3) developed by [luckman212](https://github.com/luckman212).
53
-
[Android image sharing](https://github.com/NomarCub/obsidian-copy-url-in-preview/issues/5) developed by [mnaoumov](https://github.com/mnaoumov).
54
-
[Open PDF externally](https://github.com/NomarCub/obsidian-copy-url-in-preview/issues/9) feature developed by [mnaoumov](https://github.com/mnaoumov).
55
-
56
-
Thank you to the makers of the [Tag Wrangler plugin](https://github.com/pjeby/tag-wrangler), as it was a great starting point for working with context menus in Obsidian.
1
+
# Image Context Menus
2
+
3
+
This plugin provides the following context menus for images in [Obsidian](https://obsidian.md/):
4
+
- Copy Image
5
+
- Open image in default app
6
+
- Show in system explorer
7
+
- Reveal file in navigation
8
+
9
+
It also has an `Open PDF externally` context menu for PDFs.
10
+
11
+
> This plugin used to be called "Copy Image and URL context menu". It had link URL copying functionality (see [1.5.2](https://github.com/NomarCub/obsidian-copy-url-in-preview/tree/1.5.2) and prior), but that was removed when it was included in Obsidian 1.5.
12
+
13
+
See these other plugins for related functionality:
14
+
-[Ozan's Image in Editor Plugin](https://github.com/ozntel/oz-image-in-editor-obsidian)

24
+
25
+
All features work on mobile, but were only tested on Android. Mobile uses the native image sharing functionality instead of the clipboard, and it downloads online images temporarily so they can be shared.
26
+
27
+
## Installation
28
+
29
+
You can install the plugin via the Community Plugins tab within the Obsidian app.
30
+
[Here](https://obsidian.md/plugins?id=copy-url-in-preview)'s the plugin in Obsidian's Community Plugins website.
31
+
You can install the plugin manually by copying a release to your `.obsidian/plugins/copy-url-in-preview` folder.
32
+
33
+
## Development
34
+
35
+
This plugin follows the structure of the [Obsidian Sample Plugin](https://github.com/obsidianmd/obsidian-sample-plugin), see further details there.
36
+
Contributions are welcome.
37
+
38
+
## Credits
39
+
40
+
Original plugin by [NomarCub](https://github.com/NomarCub).
41
+
If you like this plugin you can sponsor me here on GitHub: [](https://github.com/sponsors/NomarCub), on Ko-fi here: <ahref='https://ko-fi.com/nomarcub'target='_blank'><imgheight='35'src='https://az743702.vo.msecnd.net/cdn/kofi3.png?v=0'alt='Buy Me a Coffee at ko-fi.com' /></a>, or on PayPal here: [](https://paypal.me/nomarcub).
42
+
43
+
[Copying](https://github.com/NomarCub/obsidian-copy-url-in-preview/pull/2)[images](https://github.com/NomarCub/obsidian-copy-url-in-preview/pull/3) developed by [luckman212](https://github.com/luckman212).
44
+
[Android image sharing](https://github.com/NomarCub/obsidian-copy-url-in-preview/issues/5) developed by [mnaoumov](https://github.com/mnaoumov).
45
+
[Open PDF externally](https://github.com/NomarCub/obsidian-copy-url-in-preview/issues/9) feature developed by [mnaoumov](https://github.com/mnaoumov).
46
+
47
+
Thank you to the makers of the [Tag Wrangler plugin](https://github.com/pjeby/tag-wrangler), as it was a great starting point for working with context menus in Obsidian.
Copy file name to clipboardexpand all lines: manifest.json
+4-4
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,9 @@
1
1
{
2
2
"id": "copy-url-in-preview",
3
-
"name": "Copy Image and URL context menu",
4
-
"version": "1.5.2",
5
-
"minAppVersion": "1.4.11",
6
-
"description": "Copy Image, Copy URL and Open PDF externally context menu in reading view (formerly preview mode)",
3
+
"name": "Image Context Menus",
4
+
"version": "1.6.0",
5
+
"minAppVersion": "1.5.7",
6
+
"description": "Copy, open in default app, show in system explorer, reveal in navigation context menu for images. Also Open PDF externally context menu.",
0 commit comments