mirror of
https://github.com/XFox111/TabsAsideExtension.git
synced 2026-04-22 07:58:01 +03:00
fix: ",\t" adds to tab's title and URL on each cloud synchronization
This commit is contained in:
@@ -74,7 +74,7 @@ function parseTab(data: string): TabItem
|
|||||||
{
|
{
|
||||||
return {
|
return {
|
||||||
type: "tab",
|
type: "tab",
|
||||||
url: data.match(/(?<=^(\t){1,2}t\|).*(?=\|)/)!.toString(),
|
url: data.match(/(?<=^\t{1,2}t\|).*(?=\|)/)!.toString(),
|
||||||
title: data.match(/(?<=^(\t){1,2}t\|.*\|).*$/)?.toString()
|
title: data.match(/(?<=^\t{1,2}t\|.*\|).*$/)?.toString()
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "tabs-aside",
|
"name": "tabs-aside",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "3.2.1",
|
"version": "3.2.2",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "wxt",
|
"dev": "wxt",
|
||||||
|
|||||||
Reference in New Issue
Block a user