blender I share these two addons for Blender 2.80 via video.blender.org because extensions.blender.org requires Configure MFA and I am unable to do so.
All my addons are Open source and made for Blender 2.80 or newer.
The 3D Cursor Tools addon version 1.0 and 2.0 are just a shortcut to the "location": "3D Viewport > Sidebar > View > 3D Cursor" up to 4 actions with the 3D Cursor on the round drop-down menu that you can access via shift + s
The addon needs to: copy the code from the comments paste it into the Blender text editor save as something with a .py at the end or it won't work and remove all the characters - which break words into two parts from one line to the next.
The addons are below🔽
blender Blender addon Origin To 3D Cursor Panel ( "location": "3D Viewport > Sidebar > View" ) bl_info = {
"name": "Origin To 3D Cursor Panel",
"author": "",
"version": (1, 0),
"blender": (2, 80, 0),
"location": "3D Viewport > Sidebar > View",
"description": "Panel with a button to set origin to 3D cursor",
"category": "Object",
}
import bpy
class OBJECT_OT_origin_to_cursor(bpy.types.Operator):
bl_idname = "object.origin_to_cursor_button"
bl_label = "Origin to 3D Cursor"
bl_options = {'REGISTER', 'UNDO'}