Newest plugin files, but code for 1.6?

Can plugin that is updated with latest yo joplin --update be used in 1.6 if it isn't using any of 1.7 apis?

below is all this plugin do:

await joplin.commands.register({
			name: 'getActiveNoteLink',
			label: 'Copy note\'s link',

			execute: async () => {

				const note = await joplin.workspace.selectedNote();
				navigator.clipboard.writeText(`[${note.title}](:/${note.id})`)
			}
		})
		await joplin.views.menuItems.create('getActiveNoteLinkMenu', 'getActiveNoteLink', MenuItemLocation.EditorContextMenu);

Yes, edit the min Version in the manifest.

Ok, thanks.