mirror of
https://github.com/XFox111/TabsAsideExtension.git
synced 2026-07-02 19:52:47 +03:00
Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b51dd6083f | |||
| 3cd3c4453d | |||
| 816c8bf28c | |||
| c27c9f7b33 | |||
| def52278ff | |||
| 101a72e6e3 | |||
| e21022d985 | |||
| 735089eb59 | |||
| 29a9d57348 |
+27
-1
@@ -16,7 +16,33 @@ updates:
|
|||||||
schedule:
|
schedule:
|
||||||
interval: monthly
|
interval: monthly
|
||||||
rebase-strategy: disabled
|
rebase-strategy: disabled
|
||||||
open-pull-requests-limit: 20
|
groups:
|
||||||
|
deps:
|
||||||
|
patterns:
|
||||||
|
- "*"
|
||||||
|
exclude-patterns:
|
||||||
|
- "react"
|
||||||
|
- "react-dom"
|
||||||
|
- "@types/react"
|
||||||
|
- "@types/react-dom"
|
||||||
|
- "scheduler"
|
||||||
|
react:
|
||||||
|
patterns:
|
||||||
|
- "react"
|
||||||
|
- "react-dom"
|
||||||
|
- "@types/react"
|
||||||
|
- "@types/react-dom"
|
||||||
|
update-types:
|
||||||
|
- minor
|
||||||
|
- patch
|
||||||
|
react-next:
|
||||||
|
patterns:
|
||||||
|
- "react"
|
||||||
|
- "react-dom"
|
||||||
|
- "@types/react"
|
||||||
|
- "@types/react-dom"
|
||||||
|
update-types:
|
||||||
|
- major
|
||||||
|
|
||||||
- package-ecosystem: "github-actions"
|
- package-ecosystem: "github-actions"
|
||||||
directory: "/"
|
directory: "/"
|
||||||
|
|||||||
@@ -59,6 +59,11 @@ jobs:
|
|||||||
working-directory: ./node_modules/@dnd-kit/core/dist
|
working-directory: ./node_modules/@dnd-kit/core/dist
|
||||||
if: ${{ matrix.target == 'firefox' }}
|
if: ${{ matrix.target == 'firefox' }}
|
||||||
|
|
||||||
|
# Patch for firefox analytics (see https://github.com/wxt-dev/wxt/pull/1808)
|
||||||
|
- run: sed -i 's|if (location.pathname === "/background.js")|if (location.pathname === "/background.js" \|\| location.pathname === "/_generated_background_page.html")|' index.mjs
|
||||||
|
working-directory: ./node_modules/@wxt-dev/analytics/dist
|
||||||
|
if: ${{ matrix.target == 'firefox' }}
|
||||||
|
|
||||||
- run: yarn zip -b ${{ matrix.target }}
|
- run: yarn zip -b ${{ matrix.target }}
|
||||||
|
|
||||||
- name: Drop build artifacts (${{ matrix.target }})
|
- name: Drop build artifacts (${{ matrix.target }})
|
||||||
@@ -70,10 +75,11 @@ jobs:
|
|||||||
|
|
||||||
- name: web-ext lint
|
- name: web-ext lint
|
||||||
if: ${{ matrix.target == 'firefox' }}
|
if: ${{ matrix.target == 'firefox' }}
|
||||||
uses: freaktechnik/web-ext-lint@main
|
uses: kewisch/action-web-ext@main
|
||||||
with:
|
with:
|
||||||
extension-root: ./.output/firefox-mv3
|
cmd: lint
|
||||||
self-hosted: false
|
source: ./.output/firefox-mv3
|
||||||
|
channel: listed
|
||||||
|
|
||||||
- run: yarn npm audit
|
- run: yarn npm audit
|
||||||
continue-on-error: ${{ github.event_name != 'release' && github.event.inputs.bypass_audit == 'true' }}
|
continue-on-error: ${{ github.event_name != 'release' && github.event.inputs.bypass_audit == 'true' }}
|
||||||
|
|||||||
@@ -52,11 +52,11 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@main
|
||||||
|
|
||||||
# Initializes the CodeQL tools for scanning.
|
# Initializes the CodeQL tools for scanning.
|
||||||
- name: Initialize CodeQL
|
- name: Initialize CodeQL
|
||||||
uses: github/codeql-action/init@v3
|
uses: github/codeql-action/init@v4
|
||||||
with:
|
with:
|
||||||
languages: ${{ matrix.language }}
|
languages: ${{ matrix.language }}
|
||||||
# If you wish to specify custom queries, you can do so here or in a config file.
|
# If you wish to specify custom queries, you can do so here or in a config file.
|
||||||
@@ -70,7 +70,7 @@ jobs:
|
|||||||
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
||||||
# If this step fails, then you should remove it and run the build manually (see below)
|
# If this step fails, then you should remove it and run the build manually (see below)
|
||||||
- name: Autobuild
|
- name: Autobuild
|
||||||
uses: github/codeql-action/autobuild@v3
|
uses: github/codeql-action/autobuild@v4
|
||||||
|
|
||||||
# ℹ️ Command-line programs to run using the OS shell.
|
# ℹ️ Command-line programs to run using the OS shell.
|
||||||
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
|
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
|
||||||
@@ -83,4 +83,4 @@ jobs:
|
|||||||
# ./location_of_script_within_repo/buildscript.sh
|
# ./location_of_script_within_repo/buildscript.sh
|
||||||
|
|
||||||
- name: Perform CodeQL Analysis
|
- name: Perform CodeQL Analysis
|
||||||
uses: github/codeql-action/analyze@v3
|
uses: github/codeql-action/analyze@v4
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ jobs:
|
|||||||
extver=`jq -r ".version" package.json`
|
extver=`jq -r ".version" package.json`
|
||||||
echo "version=$extver" >> "$GITHUB_OUTPUT"
|
echo "version=$extver" >> "$GITHUB_OUTPUT"
|
||||||
|
|
||||||
- uses: dev-build-deploy/release-me@v0.18.0
|
- uses: dev-build-deploy/release-me@v0.18.2
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
prefix: v
|
prefix: v
|
||||||
|
|||||||
@@ -51,6 +51,11 @@ jobs:
|
|||||||
working-directory: ./node_modules/@dnd-kit/core/dist
|
working-directory: ./node_modules/@dnd-kit/core/dist
|
||||||
if: ${{ matrix.target == 'firefox' }}
|
if: ${{ matrix.target == 'firefox' }}
|
||||||
|
|
||||||
|
# Patch for firefox analytics (see https://github.com/wxt-dev/wxt/pull/1808)
|
||||||
|
- run: sed -i 's|if (location.pathname === "/background.js")|if (location.pathname === "/background.js" \|\| location.pathname === "/_generated_background_page.html")|' index.mjs
|
||||||
|
working-directory: ./node_modules/@wxt-dev/analytics/dist
|
||||||
|
if: ${{ matrix.target == 'firefox' }}
|
||||||
|
|
||||||
- run: yarn zip -b ${{ matrix.target }}
|
- run: yarn zip -b ${{ matrix.target }}
|
||||||
|
|
||||||
- name: Drop artifacts (${{ matrix.target }})
|
- name: Drop artifacts (${{ matrix.target }})
|
||||||
@@ -62,9 +67,10 @@ jobs:
|
|||||||
|
|
||||||
- name: web-ext lint
|
- name: web-ext lint
|
||||||
if: ${{ matrix.target == 'firefox' }}
|
if: ${{ matrix.target == 'firefox' }}
|
||||||
uses: freaktechnik/web-ext-lint@main
|
uses: kewisch/action-web-ext@main
|
||||||
with:
|
with:
|
||||||
extension-root: ./.output/firefox-mv3
|
cmd: lint
|
||||||
self-hosted: false
|
source: ./.output/firefox-mv3
|
||||||
|
channel: listed
|
||||||
|
|
||||||
- run: yarn npm audit
|
- run: yarn npm audit
|
||||||
|
|||||||
+35
-2
@@ -6,7 +6,7 @@
|
|||||||
- Thumbnails of saved tabs
|
- Thumbnails of saved tabs
|
||||||
3. This extension uses Google Analytics to collect usage statistics and improve the extension.
|
3. This extension uses Google Analytics to collect usage statistics and improve the extension.
|
||||||
4. This extension uses analytics to collect following data:
|
4. This extension uses analytics to collect following data:
|
||||||
- Random UUID to identify the user
|
- Random UUID to distinguish unique users
|
||||||
- Browser name and version
|
- Browser name and version
|
||||||
- Operating system name and version
|
- Operating system name and version
|
||||||
- System architecture
|
- System architecture
|
||||||
@@ -14,7 +14,40 @@
|
|||||||
- Extension language
|
- Extension language
|
||||||
- User settings
|
- User settings
|
||||||
- Number of saved collections
|
- Number of saved collections
|
||||||
- Action identifiers (e.g. "page_view", "extension_installed", "item_created", etc.)
|
- Events, related to user's actions:
|
||||||
|
- `bmc_clicked` (when "Buy me a Coffee" button is clicked)
|
||||||
|
- `collection_list` (when extension's options page is opened)
|
||||||
|
- `cta_dismissed` (when "Like this extension?" prompt is closed)
|
||||||
|
- `extension_installed` (when extension is installed or updated)
|
||||||
|
- `feedback_clicked` (when "Leave feedback" button is clicked)
|
||||||
|
- `item_created` (when new collection or group is created using dialog window)
|
||||||
|
- `item_edited` (when collection or group is edited)
|
||||||
|
- `options_page` (when extension's options page is opened)
|
||||||
|
- `page_view` (when extension's page is opened)
|
||||||
|
- `save` (when "Save all tabs" or "Save selected tabs" buttons are clicked)
|
||||||
|
- `set_aside` (when "Set all tabs aside" or "Set selected tabs aside" buttons are clicked)
|
||||||
|
- `used_drag_and_drop` (when items inside collection list were reordered)
|
||||||
|
- `visit_blog_button_click` (when "Read dev blog" button is clicked)
|
||||||
|
- `bookmarks_saved` (when "Export to bookmarks" option is clicked)
|
||||||
|
- Events, related to extension errors:
|
||||||
|
- `background_error` (when error inside background service has occured)
|
||||||
|
- `cloud_get_error` (when failed to retrieve collections from the cloud storage)
|
||||||
|
- `conflict_resolve_with_cloud_error` (when failed to retrieve collections from the cloud storage during storage conflict resolution)
|
||||||
|
- `cloud_save_error` (when failed to save collections to the cloud storage)
|
||||||
|
- `messaging_error` (when failed to send a message to extenion's background service)
|
||||||
|
- `notification_error` (when failed to display a toast notification)
|
||||||
|
4. Following events, beside their name, include additional information, such as:
|
||||||
|
- `item_created` and `item_edited`:
|
||||||
|
- Type of the affected item (`collection` or `group`)
|
||||||
|
- `extension_installed`:
|
||||||
|
- Reason for update (`install`, `update`, or `browser_update`)
|
||||||
|
- Previously installed extension's version, if applicable
|
||||||
|
- `page_view`:
|
||||||
|
- Type of the page (`options_page` or `collection_list`)
|
||||||
|
- All extension's error events:
|
||||||
|
- Error name
|
||||||
|
- Error message
|
||||||
|
- Error call stack
|
||||||
4. This extension does not collect or use any personally identifiable information (PII) or sensitive data for purposes other than its core functionality.
|
4. This extension does not collect or use any personally identifiable information (PII) or sensitive data for purposes other than its core functionality.
|
||||||
5. This extension uses cloud storage built into your browser to store its data.
|
5. This extension uses cloud storage built into your browser to store its data.
|
||||||
6. Refer to your browser's developer regarding the privacy policy of the cloud storage used by your browser.
|
6. Refer to your browser's developer regarding the privacy policy of the cloud storage used by your browser.
|
||||||
|
|||||||
@@ -37,7 +37,7 @@ Check out our [latest blog post](https://at.xfox111.net/tabs-aside-3-0) regardin
|
|||||||
|
|
||||||
- [Google Chrome Webstore](https://chrome.google.com/webstore/detail/mgmjbodjgijnebfgohlnjkegdpbdjgin)
|
- [Google Chrome Webstore](https://chrome.google.com/webstore/detail/mgmjbodjgijnebfgohlnjkegdpbdjgin)
|
||||||
- [Microsoft Edge Add-ons Webstore](https://microsoftedge.microsoft.com/addons/detail/kmnblllmalkiapkfknnlpobmjjdnlhnd)
|
- [Microsoft Edge Add-ons Webstore](https://microsoftedge.microsoft.com/addons/detail/kmnblllmalkiapkfknnlpobmjjdnlhnd)
|
||||||
- [Firefox Add-ons](https://addons.mozilla.org/en-US/firefox/addon/ms-edge-tabs-aside/)
|
- [Firefox Add-ons](https://addons.mozilla.org/firefox/addon/ms-edge-tabs-aside/)
|
||||||
- [GitHub Releases](https://github.com/xfox111/TabsAsideExtension/releases/latest)
|
- [GitHub Releases](https://github.com/xfox111/TabsAsideExtension/releases/latest)
|
||||||
|
|
||||||
### Sideloading (for testing purposes only)
|
### Sideloading (for testing purposes only)
|
||||||
@@ -81,7 +81,7 @@ If you want to sideload it without replacing to run both versions at the same ti
|
|||||||
|
|
||||||
## Contributing
|
## Contributing
|
||||||
[](https://github.com/xfox111/TabsAsideExtension/issues)
|
[](https://github.com/xfox111/TabsAsideExtension/issues)
|
||||||
[](https://github.com/XFox111/TabsAsideExtension/actions/workflows/cd_pipeline.yaml)
|
[](https://github.com/XFox111/TabsAsideExtension/actions/workflows/cd_pipeline.yml)
|
||||||
[](https://github.com/xfox111/TabsAsideExtension)
|
[](https://github.com/xfox111/TabsAsideExtension)
|
||||||
|
|
||||||
There are many ways in which you can participate in the project, for example:
|
There are many ways in which you can participate in the project, for example:
|
||||||
|
|||||||
@@ -1,24 +0,0 @@
|
|||||||
import { googleAnalytics4 } from "@wxt-dev/analytics/providers/google-analytics-4";
|
|
||||||
import { WxtAppConfig } from "wxt/sandbox";
|
|
||||||
import { userPropertiesStorage } from "./features/analytics";
|
|
||||||
|
|
||||||
export default defineAppConfig({
|
|
||||||
analytics:
|
|
||||||
{
|
|
||||||
debug: import.meta.env.DEV,
|
|
||||||
enabled: storage.defineItem("local:analytics", {
|
|
||||||
fallback: true
|
|
||||||
}),
|
|
||||||
userId: storage.defineItem("local:userId", {
|
|
||||||
init: () => crypto.randomUUID()
|
|
||||||
}),
|
|
||||||
userProperties: userPropertiesStorage,
|
|
||||||
providers:
|
|
||||||
[
|
|
||||||
googleAnalytics4({
|
|
||||||
apiSecret: import.meta.env.WXT_GA4_API_SECRET,
|
|
||||||
measurementId: import.meta.env.WXT_GA4_MEASUREMENT_ID
|
|
||||||
})
|
|
||||||
]
|
|
||||||
}
|
|
||||||
} as WxtAppConfig);
|
|
||||||
+3
-2
@@ -13,12 +13,13 @@ export const githubLinks =
|
|||||||
repo: githubLink(),
|
repo: githubLink(),
|
||||||
release: githubLink(`releases/tag/v${Package.version}`),
|
release: githubLink(`releases/tag/v${Package.version}`),
|
||||||
license: githubLink("blob/main/LICENSE"),
|
license: githubLink("blob/main/LICENSE"),
|
||||||
translationGuide: githubLink("wiki/Contribution-Guidelines#contributing-to-translations")
|
translationGuide: githubLink("wiki/Contribution-Guidelines#contributing-to-translations"),
|
||||||
|
privacy: githubLink("blob/main/PRIVACY.md")
|
||||||
};
|
};
|
||||||
|
|
||||||
export const storeLink: string =
|
export const storeLink: string =
|
||||||
import.meta.env.FIREFOX
|
import.meta.env.FIREFOX
|
||||||
? "https://addons.mozilla.org/en-US/firefox/addon/ms-edge-tabs-aside/" :
|
? "https://addons.mozilla.org/en-US/firefox/addon/ms-edge-tabs-aside/" :
|
||||||
chrome.runtime.getManifest().update_url?.startsWith("https://edge.microsoft.com/") ?
|
browser.runtime.getManifest().update_url?.startsWith("https://edge.microsoft.com/") ?
|
||||||
"https://microsoftedge.microsoft.com/addons/detail/tabs-aside/kmnblllmalkiapkfknnlpobmjjdnlhnd" :
|
"https://microsoftedge.microsoft.com/addons/detail/tabs-aside/kmnblllmalkiapkfknnlpobmjjdnlhnd" :
|
||||||
"https://chromewebstore.google.com/detail/tabs-aside/mgmjbodjgijnebfgohlnjkegdpbdjgin";
|
"https://chromewebstore.google.com/detail/tabs-aside/mgmjbodjgijnebfgohlnjkegdpbdjgin";
|
||||||
|
|||||||
+143
-46
@@ -1,17 +1,24 @@
|
|||||||
import { track, trackError } from "@/features/analytics";
|
import { track, trackError } from "@/features/analytics";
|
||||||
import { collectionCount, getCollections, saveCollections } from "@/features/collectionStorage";
|
import { collectionCount, getCollections, saveCollections, thumbnailCaptureEnabled } from "@/features/collectionStorage";
|
||||||
|
import { collectionStorage } from "@/features/collectionStorage/utils/collectionStorage";
|
||||||
|
import getCollectionsFromCloud from "@/features/collectionStorage/utils/getCollectionsFromCloud";
|
||||||
|
import getCollectionsFromLocal from "@/features/collectionStorage/utils/getCollectionsFromLocal";
|
||||||
import { migrateStorage } from "@/features/migration";
|
import { migrateStorage } from "@/features/migration";
|
||||||
|
import { setSettingsReviewNeeded } from "@/features/settingsReview/utils";
|
||||||
import { showWelcomeDialog } from "@/features/v3welcome/utils/showWelcomeDialog";
|
import { showWelcomeDialog } from "@/features/v3welcome/utils/showWelcomeDialog";
|
||||||
import { SettingsValue } from "@/hooks/useSettings";
|
import { SettingsValue } from "@/hooks/useSettings";
|
||||||
import { CollectionItem, GraphicsStorage } from "@/models/CollectionModels";
|
import { CollectionItem, GraphicsStorage } from "@/models/CollectionModels";
|
||||||
|
import { closeTabsAsync } from "@/utils/closeTabsAsync";
|
||||||
|
import { createCollectionFromTabs } from "@/utils/createCollectionFromTabs";
|
||||||
import getLogger from "@/utils/getLogger";
|
import getLogger from "@/utils/getLogger";
|
||||||
|
import { getTabsToSaveAsync } from "@/utils/getTabsToSaveAsync";
|
||||||
import { onMessage, sendMessage } from "@/utils/messaging";
|
import { onMessage, sendMessage } from "@/utils/messaging";
|
||||||
import saveTabsToCollection from "@/utils/saveTabsToCollection";
|
|
||||||
import sendNotification from "@/utils/sendNotification";
|
import sendNotification from "@/utils/sendNotification";
|
||||||
|
import sendPartialSaveNotification from "@/utils/sendPartialSaveNotification";
|
||||||
import { settings } from "@/utils/settings";
|
import { settings } from "@/utils/settings";
|
||||||
import watchTabSelection from "@/utils/watchTabSelection";
|
import watchTabSelection from "@/utils/watchTabSelection";
|
||||||
import { Tabs, Windows } from "wxt/browser";
|
import { RemoveListenerCallback } from "@webext-core/messaging";
|
||||||
import { Unwatch } from "wxt/storage";
|
import { Unwatch } from "wxt/utils/storage";
|
||||||
import { openCollection, openGroup } from "./sidepanel/utils/opener";
|
import { openCollection, openGroup } from "./sidepanel/utils/opener";
|
||||||
|
|
||||||
export default defineBackground(() =>
|
export default defineBackground(() =>
|
||||||
@@ -19,7 +26,7 @@ export default defineBackground(() =>
|
|||||||
try
|
try
|
||||||
{
|
{
|
||||||
const logger = getLogger("background");
|
const logger = getLogger("background");
|
||||||
const graphicsCache: GraphicsStorage = {};
|
let graphicsCache: GraphicsStorage = {};
|
||||||
let listLocation: SettingsValue<"listLocation"> = "sidebar";
|
let listLocation: SettingsValue<"listLocation"> = "sidebar";
|
||||||
|
|
||||||
logger("Background script started");
|
logger("Background script started");
|
||||||
@@ -34,26 +41,42 @@ export default defineBackground(() =>
|
|||||||
logger("onInstalled", reason, previousVersion);
|
logger("onInstalled", reason, previousVersion);
|
||||||
track("extension_installed", { reason, previousVersion: previousVersion ?? "none" });
|
track("extension_installed", { reason, previousVersion: previousVersion ?? "none" });
|
||||||
|
|
||||||
const previousMajor: number = previousVersion ? parseInt(previousVersion.split(".")[0]) : 0;
|
const [major, minor, patch] = (previousVersion ?? "0.0.0").split(".").map(parseInt);
|
||||||
|
const cumulative: number = major * 10000 + minor * 100 + patch;
|
||||||
|
|
||||||
if (reason === "update" && previousMajor < 3)
|
await setSettingsReviewNeeded(reason, previousVersion);
|
||||||
|
|
||||||
|
if (reason === "update" && cumulative < 30000) // < 3.0.0
|
||||||
{
|
{
|
||||||
await migrateStorage();
|
await migrateStorage();
|
||||||
await showWelcomeDialog.setValue(true);
|
await showWelcomeDialog.setValue(true);
|
||||||
browser.runtime.reload();
|
browser.runtime.reload();
|
||||||
}
|
}
|
||||||
});
|
|
||||||
|
|
||||||
browser.tabs.onUpdated.addListener((_, __, tab) =>
|
if (reason === "update" && cumulative >= 30000 && cumulative < 30200) // >= 3.0.0 && < 3.2.0
|
||||||
{
|
{
|
||||||
if (!tab.url)
|
// Merge cloud and local storage if they are out of sync
|
||||||
return;
|
const localTimestamp: number = await collectionStorage.localLastUpdated.getValue();
|
||||||
|
const syncTimestamp: number = await collectionStorage.syncLastUpdated.getValue();
|
||||||
|
|
||||||
graphicsCache[tab.url] = {
|
if (localTimestamp === syncTimestamp)
|
||||||
preview: graphicsCache[tab.url]?.preview,
|
return;
|
||||||
capture: graphicsCache[tab.url]?.capture,
|
|
||||||
icon: tab.favIconUrl ?? graphicsCache[tab.url]?.icon
|
try
|
||||||
};
|
{
|
||||||
|
const localCollections: CollectionItem[] = await getCollectionsFromLocal();
|
||||||
|
const cloudCollections: CollectionItem[] = await getCollectionsFromCloud();
|
||||||
|
const mergedCollections: CollectionItem[] = [...cloudCollections, ...localCollections];
|
||||||
|
|
||||||
|
await saveCollections(mergedCollections, true, graphicsCache);
|
||||||
|
}
|
||||||
|
catch (ex)
|
||||||
|
{
|
||||||
|
logger("Failed to merge cloud and local storage during update");
|
||||||
|
trackError("cloud_sync_merge_error", ex as Error);
|
||||||
|
console.error(ex);
|
||||||
|
}
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
browser.commands.onCommand.addListener(
|
browser.commands.onCommand.addListener(
|
||||||
@@ -61,14 +84,6 @@ export default defineBackground(() =>
|
|||||||
);
|
);
|
||||||
|
|
||||||
onMessage("getGraphicsCache", () => graphicsCache);
|
onMessage("getGraphicsCache", () => graphicsCache);
|
||||||
onMessage("addThumbnail", ({ data }) =>
|
|
||||||
{
|
|
||||||
graphicsCache[data.url] = {
|
|
||||||
preview: data.thumbnail,
|
|
||||||
capture: graphicsCache[data.url]?.capture,
|
|
||||||
icon: graphicsCache[data.url]?.icon
|
|
||||||
};
|
|
||||||
});
|
|
||||||
onMessage("refreshCollections", () => { });
|
onMessage("refreshCollections", () => { });
|
||||||
|
|
||||||
if (import.meta.env.FIREFOX)
|
if (import.meta.env.FIREFOX)
|
||||||
@@ -80,7 +95,22 @@ export default defineBackground(() =>
|
|||||||
setupTabCaputre();
|
setupTabCaputre();
|
||||||
async function setupTabCaputre(): Promise<void>
|
async function setupTabCaputre(): Promise<void>
|
||||||
{
|
{
|
||||||
const tryCaptureTab = async (tab: Tabs.Tab): Promise<void> =>
|
let unwatchAddThumbnail: RemoveListenerCallback | null = null;
|
||||||
|
let captureInterval: NodeJS.Timeout | null = null;
|
||||||
|
|
||||||
|
const captureFavicon = (_: any, __: any, tab: Browser.tabs.Tab): void =>
|
||||||
|
{
|
||||||
|
if (!tab.url)
|
||||||
|
return;
|
||||||
|
|
||||||
|
graphicsCache[tab.url] = {
|
||||||
|
preview: graphicsCache[tab.url]?.preview,
|
||||||
|
capture: graphicsCache[tab.url]?.capture,
|
||||||
|
icon: tab.favIconUrl ?? graphicsCache[tab.url]?.icon
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
const tryCaptureTab = async (tab: Browser.tabs.Tab): Promise<void> =>
|
||||||
{
|
{
|
||||||
if (!tab.url || tab.status !== "complete" || !tab.active)
|
if (!tab.url || tab.status !== "complete" || !tab.active)
|
||||||
return;
|
return;
|
||||||
@@ -92,7 +122,7 @@ export default defineBackground(() =>
|
|||||||
{
|
{
|
||||||
// We use chrome here because polyfill throws uncatchable errors for some reason
|
// We use chrome here because polyfill throws uncatchable errors for some reason
|
||||||
// It's a compatible API anyway
|
// It's a compatible API anyway
|
||||||
const capture: string = await chrome.tabs.captureVisibleTab(tab.windowId!, { format: "jpeg", quality: 1 });
|
const capture: string = await browser.tabs.captureVisibleTab(tab.windowId!, { format: "jpeg", quality: 1 });
|
||||||
|
|
||||||
if (capture)
|
if (capture)
|
||||||
{
|
{
|
||||||
@@ -113,11 +143,61 @@ export default defineBackground(() =>
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
setInterval(() =>
|
const updateCapture = async (captureThumbnails: boolean): Promise<void> =>
|
||||||
{
|
{
|
||||||
browser.tabs.query({ active: true })
|
const scriptingGranted: boolean = await browser.permissions.contains({ permissions: ["scripting"] });
|
||||||
.then(tabs => tabs.forEach(tab => tryCaptureTab(tab)));
|
|
||||||
}, 1000);
|
if (captureThumbnails)
|
||||||
|
{
|
||||||
|
if (scriptingGranted)
|
||||||
|
await browser.scripting.registerContentScripts([
|
||||||
|
{
|
||||||
|
id: "capture-script",
|
||||||
|
matches: ["<all_urls>"],
|
||||||
|
runAt: "document_idle",
|
||||||
|
js: ["capture.js"]
|
||||||
|
}
|
||||||
|
]);
|
||||||
|
|
||||||
|
unwatchAddThumbnail = onMessage("addThumbnail", ({ data }) =>
|
||||||
|
{
|
||||||
|
graphicsCache[data.url] = {
|
||||||
|
preview: data.thumbnail,
|
||||||
|
capture: graphicsCache[data.url]?.capture,
|
||||||
|
icon: graphicsCache[data.url]?.icon
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
|
captureInterval = setInterval(() =>
|
||||||
|
{
|
||||||
|
browser.tabs.query({ active: true })
|
||||||
|
.then(tabs => tabs.forEach(tab => tryCaptureTab(tab)));
|
||||||
|
}, 1000);
|
||||||
|
|
||||||
|
browser.tabs.onUpdated.addListener(captureFavicon);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (scriptingGranted)
|
||||||
|
await browser.scripting.unregisterContentScripts({
|
||||||
|
ids: ["capture-script"]
|
||||||
|
});
|
||||||
|
|
||||||
|
unwatchAddThumbnail?.();
|
||||||
|
|
||||||
|
if (captureInterval)
|
||||||
|
clearInterval(captureInterval);
|
||||||
|
|
||||||
|
browser.tabs.onUpdated.removeListener(captureFavicon);
|
||||||
|
|
||||||
|
graphicsCache = {};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
if (await thumbnailCaptureEnabled.getValue())
|
||||||
|
updateCapture(true);
|
||||||
|
|
||||||
|
thumbnailCaptureEnabled.watch(updateCapture);
|
||||||
}
|
}
|
||||||
|
|
||||||
setupContextMenu();
|
setupContextMenu();
|
||||||
@@ -206,6 +286,7 @@ export default defineBackground(() =>
|
|||||||
};
|
};
|
||||||
|
|
||||||
const toggleSidebarFirefox = async (): Promise<void> =>
|
const toggleSidebarFirefox = async (): Promise<void> =>
|
||||||
|
// @ts-expect-error Firefox-only API
|
||||||
await browser.sidebarAction.toggle();
|
await browser.sidebarAction.toggle();
|
||||||
|
|
||||||
const updateButton = async (action: SettingsValue<"contextAction">): Promise<void> =>
|
const updateButton = async (action: SettingsValue<"contextAction">): Promise<void> =>
|
||||||
@@ -222,7 +303,7 @@ export default defineBackground(() =>
|
|||||||
unwatchActionTitle?.();
|
unwatchActionTitle?.();
|
||||||
|
|
||||||
if (!import.meta.env.FIREFOX)
|
if (!import.meta.env.FIREFOX)
|
||||||
await chrome.sidePanel.setPanelBehavior({ openPanelOnActionClick: false });
|
await browser.sidePanel.setPanelBehavior({ openPanelOnActionClick: false });
|
||||||
|
|
||||||
// Setup new behavior
|
// Setup new behavior
|
||||||
if (action === "action")
|
if (action === "action")
|
||||||
@@ -241,7 +322,7 @@ export default defineBackground(() =>
|
|||||||
if (import.meta.env.FIREFOX)
|
if (import.meta.env.FIREFOX)
|
||||||
browser.action.onClicked.addListener(toggleSidebarFirefox);
|
browser.action.onClicked.addListener(toggleSidebarFirefox);
|
||||||
else
|
else
|
||||||
chrome.sidePanel.setPanelBehavior({ openPanelOnActionClick: true });
|
browser.sidePanel.setPanelBehavior({ openPanelOnActionClick: true });
|
||||||
}
|
}
|
||||||
else if (location !== "popup")
|
else if (location !== "popup")
|
||||||
browser.action.onClicked.addListener(openCollectionsInTab);
|
browser.action.onClicked.addListener(openCollectionsInTab);
|
||||||
@@ -260,17 +341,17 @@ export default defineBackground(() =>
|
|||||||
{
|
{
|
||||||
logger("enforcePinnedTab");
|
logger("enforcePinnedTab");
|
||||||
|
|
||||||
const openWindows: Windows.Window[] = await browser.windows.getAll({ populate: true });
|
const openWindows: Browser.windows.Window[] = await browser.windows.getAll({ populate: true });
|
||||||
|
|
||||||
for (const openWindow of openWindows)
|
for (const openWindow of openWindows)
|
||||||
{
|
{
|
||||||
if (openWindow.incognito || openWindow.type !== "normal")
|
if (openWindow.incognito || openWindow.type !== "normal")
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
const activeTabs: Tabs.Tab[] = openWindow.tabs!.filter(tab =>
|
const activeTabs: Browser.tabs.Tab[] = openWindow.tabs!.filter(tab =>
|
||||||
tab.url === browser.runtime.getURL("/sidepanel.html"));
|
tab.url === browser.runtime.getURL("/sidepanel.html"));
|
||||||
|
|
||||||
const targetTab: Tabs.Tab | undefined = activeTabs.find(tab => tab.pinned);
|
const targetTab: Browser.tabs.Tab | undefined = activeTabs.find(tab => tab.pinned);
|
||||||
|
|
||||||
if (!targetTab)
|
if (!targetTab)
|
||||||
await browser.tabs.create({
|
await browser.tabs.create({
|
||||||
@@ -280,7 +361,7 @@ export default defineBackground(() =>
|
|||||||
pinned: true
|
pinned: true
|
||||||
});
|
});
|
||||||
|
|
||||||
const tabsToClose: Tabs.Tab[] = activeTabs.filter(tab => tab.id !== targetTab?.id);
|
const tabsToClose: Browser.tabs.Tab[] = activeTabs.filter(tab => tab.id !== targetTab?.id);
|
||||||
|
|
||||||
if (tabsToClose.length > 0)
|
if (tabsToClose.length > 0)
|
||||||
await browser.tabs.remove(tabsToClose.map(tab => tab.id!));
|
await browser.tabs.remove(tabsToClose.map(tab => tab.id!));
|
||||||
@@ -292,7 +373,7 @@ export default defineBackground(() =>
|
|||||||
logger("updateView", viewLocation);
|
logger("updateView", viewLocation);
|
||||||
|
|
||||||
browser.tabs.onHighlighted.removeListener(enforcePinnedTab);
|
browser.tabs.onHighlighted.removeListener(enforcePinnedTab);
|
||||||
const tabs: Tabs.Tab[] = await browser.tabs.query({
|
const tabs: Browser.tabs.Tab[] = await browser.tabs.query({
|
||||||
url: browser.runtime.getURL("/sidepanel.html")
|
url: browser.runtime.getURL("/sidepanel.html")
|
||||||
});
|
});
|
||||||
await browser.tabs.remove(tabs.map(tab => tab.id!));
|
await browser.tabs.remove(tabs.map(tab => tab.id!));
|
||||||
@@ -302,11 +383,12 @@ export default defineBackground(() =>
|
|||||||
});
|
});
|
||||||
|
|
||||||
if (import.meta.env.FIREFOX)
|
if (import.meta.env.FIREFOX)
|
||||||
|
// @ts-expect-error Firefox-only API
|
||||||
await browser.sidebarAction.setPanel({
|
await browser.sidebarAction.setPanel({
|
||||||
panel: viewLocation === "sidebar" ? browser.runtime.getURL("/sidepanel.html") : ""
|
panel: viewLocation === "sidebar" ? browser.runtime.getURL("/sidepanel.html") : ""
|
||||||
});
|
});
|
||||||
else
|
else
|
||||||
await chrome.sidePanel.setOptions({ enabled: viewLocation === "sidebar" });
|
await browser.sidePanel.setOptions({ enabled: viewLocation === "sidebar" });
|
||||||
|
|
||||||
if (viewLocation === "pinned")
|
if (viewLocation === "pinned")
|
||||||
{
|
{
|
||||||
@@ -337,9 +419,10 @@ export default defineBackground(() =>
|
|||||||
if (view === "sidebar")
|
if (view === "sidebar")
|
||||||
{
|
{
|
||||||
if (import.meta.env.FIREFOX)
|
if (import.meta.env.FIREFOX)
|
||||||
|
// @ts-expect-error Firefox-only API
|
||||||
browser.sidebarAction.open();
|
browser.sidebarAction.open();
|
||||||
else
|
else
|
||||||
chrome.sidePanel.open({ windowId });
|
browser.sidePanel.open({ windowId });
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
browser.action.openPopup();
|
browser.action.openPopup();
|
||||||
@@ -349,11 +432,11 @@ export default defineBackground(() =>
|
|||||||
{
|
{
|
||||||
logger("openCollectionsInTab");
|
logger("openCollectionsInTab");
|
||||||
|
|
||||||
const currentWindow: Windows.Window = await browser.windows.getCurrent({ populate: true });
|
const currentWindow: Browser.windows.Window = await browser.windows.getCurrent({ populate: true });
|
||||||
|
|
||||||
if (currentWindow.incognito)
|
if (currentWindow.incognito)
|
||||||
{
|
{
|
||||||
let availableWindows: Windows.Window[] = await browser.windows.getAll({ populate: true });
|
let availableWindows: Browser.windows.Window[] = await browser.windows.getAll({ populate: true });
|
||||||
|
|
||||||
availableWindows = availableWindows.filter(window =>
|
availableWindows = availableWindows.filter(window =>
|
||||||
!window.incognito &&
|
!window.incognito &&
|
||||||
@@ -362,7 +445,7 @@ export default defineBackground(() =>
|
|||||||
|
|
||||||
if (availableWindows.length > 0)
|
if (availableWindows.length > 0)
|
||||||
{
|
{
|
||||||
const availableTab: Tabs.Tab = availableWindows[0].tabs!.find(
|
const availableTab: Browser.tabs.Tab = availableWindows[0].tabs!.find(
|
||||||
tab => tab.url === browser.runtime.getURL("/sidepanel.html")
|
tab => tab.url === browser.runtime.getURL("/sidepanel.html")
|
||||||
)!;
|
)!;
|
||||||
|
|
||||||
@@ -379,7 +462,7 @@ export default defineBackground(() =>
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
const collectionTab: Tabs.Tab | undefined = currentWindow.tabs!.find(
|
const collectionTab: Browser.tabs.Tab | undefined = currentWindow.tabs!.find(
|
||||||
tab => tab.url === browser.runtime.getURL("/sidepanel.html")
|
tab => tab.url === browser.runtime.getURL("/sidepanel.html")
|
||||||
);
|
);
|
||||||
|
|
||||||
@@ -398,14 +481,28 @@ export default defineBackground(() =>
|
|||||||
{
|
{
|
||||||
logger("saveTabs", closeAfterSave);
|
logger("saveTabs", closeAfterSave);
|
||||||
|
|
||||||
const collection: CollectionItem = await saveTabsToCollection(closeAfterSave);
|
const [tabs, skipCount] = await getTabsToSaveAsync();
|
||||||
|
|
||||||
|
if (tabs.length < 1)
|
||||||
|
{
|
||||||
|
await sendPartialSaveNotification();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const collection: CollectionItem = await createCollectionFromTabs(tabs);
|
||||||
const [savedCollections, cloudIssue] = await getCollections();
|
const [savedCollections, cloudIssue] = await getCollections();
|
||||||
const newList = [collection, ...savedCollections];
|
const newList = [collection, ...savedCollections];
|
||||||
|
|
||||||
await saveCollections(newList, cloudIssue === null, graphicsCache);
|
await saveCollections(newList, cloudIssue === null, graphicsCache);
|
||||||
|
|
||||||
|
track(closeAfterSave ? "set_aside" : "save");
|
||||||
sendMessage("refreshCollections", undefined);
|
sendMessage("refreshCollections", undefined);
|
||||||
|
|
||||||
|
if (skipCount > 0)
|
||||||
|
await sendPartialSaveNotification();
|
||||||
|
|
||||||
|
if (closeAfterSave)
|
||||||
|
await closeTabsAsync(tabs);
|
||||||
|
|
||||||
if (await settings.notifyOnSave.getValue())
|
if (await settings.notifyOnSave.getValue())
|
||||||
await sendNotification({
|
await sendNotification({
|
||||||
title: i18n.t("notifications.tabs_saved.title"),
|
title: i18n.t("notifications.tabs_saved.title"),
|
||||||
|
|||||||
@@ -4,11 +4,7 @@ import { sendMessage } from "@/utils/messaging";
|
|||||||
// This content script is injected into each browser tab.
|
// This content script is injected into each browser tab.
|
||||||
// It's purpose is to retrive an OpenGraph thumbnail URL from the metadata
|
// It's purpose is to retrive an OpenGraph thumbnail URL from the metadata
|
||||||
|
|
||||||
export default defineContentScript({
|
export default defineUnlistedScript({ main });
|
||||||
matches: ["<all_urls>"],
|
|
||||||
runAt: "document_idle",
|
|
||||||
main
|
|
||||||
});
|
|
||||||
|
|
||||||
const logger = getLogger("contentScript");
|
const logger = getLogger("contentScript");
|
||||||
|
|
||||||
@@ -34,5 +34,12 @@ export const useOptionsStyles = makeStyles({
|
|||||||
display: "flex",
|
display: "flex",
|
||||||
flexWrap: "wrap",
|
flexWrap: "wrap",
|
||||||
gap: tokens.spacingHorizontalS
|
gap: tokens.spacingHorizontalS
|
||||||
|
},
|
||||||
|
group:
|
||||||
|
{
|
||||||
|
display: "flex",
|
||||||
|
flexFlow: "column",
|
||||||
|
alignItems: "flex-start",
|
||||||
|
gap: tokens.spacingVerticalSNudge
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -34,7 +34,8 @@ export default function AboutSection(): React.ReactElement
|
|||||||
<Body1 as="p">
|
<Body1 as="p">
|
||||||
<Link { ...extLink(websiteLink) }>{ i18n.t("options_page.about.links.website") }</Link><br />
|
<Link { ...extLink(websiteLink) }>{ i18n.t("options_page.about.links.website") }</Link><br />
|
||||||
<Link { ...extLink(githubLinks.repo) }>{ i18n.t("options_page.about.links.source") }</Link><br />
|
<Link { ...extLink(githubLinks.repo) }>{ i18n.t("options_page.about.links.source") }</Link><br />
|
||||||
<Link { ...extLink(githubLinks.release) }>{ i18n.t("options_page.about.links.changelog") }</Link>
|
<Link { ...extLink(githubLinks.release) }>{ i18n.t("options_page.about.links.changelog") }</Link><br />
|
||||||
|
<Link { ...extLink(githubLinks.privacy) }>{ i18n.t("options_page.about.links.privacy") }</Link>
|
||||||
</Body1>
|
</Body1>
|
||||||
|
|
||||||
<div className={ cls.horizontalButtons }>
|
<div className={ cls.horizontalButtons }>
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
import { analyticsPermission } from "@/features/analytics";
|
||||||
import useSettings, { SettingsValue } from "@/hooks/useSettings";
|
import useSettings, { SettingsValue } from "@/hooks/useSettings";
|
||||||
import { Button, Checkbox, Dropdown, Field, Option, OptionOnSelectData } from "@fluentui/react-components";
|
import { Button, Checkbox, Dropdown, Field, Option, OptionOnSelectData } from "@fluentui/react-components";
|
||||||
import { KeyCommand20Regular } from "@fluentui/react-icons";
|
import { KeyCommand20Regular } from "@fluentui/react-icons";
|
||||||
@@ -13,9 +14,25 @@ export default function GeneralSection(): React.ReactElement
|
|||||||
const [dismissOnLoad, setDismissOnLoad] = useSettings("dismissOnLoad");
|
const [dismissOnLoad, setDismissOnLoad] = useSettings("dismissOnLoad");
|
||||||
const [listLocation, setListLocation] = useSettings("listLocation");
|
const [listLocation, setListLocation] = useSettings("listLocation");
|
||||||
const [contextAction, setContextAction] = useSettings("contextAction");
|
const [contextAction, setContextAction] = useSettings("contextAction");
|
||||||
|
const [showPartialSaveNotification, setShowPartialSaveNotification] = useSettings("showPartialSaveNotification");
|
||||||
|
|
||||||
|
const [allowAnalytics, setAllowAnalytics] = useState<boolean | null>(null);
|
||||||
|
|
||||||
const cls = useOptionsStyles();
|
const cls = useOptionsStyles();
|
||||||
|
|
||||||
|
useEffect(() =>
|
||||||
|
{
|
||||||
|
analyticsPermission.getValue().then(setAllowAnalytics);
|
||||||
|
return analyticsPermission.watch(setAllowAnalytics);
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const updateAnalytics = (enabled: boolean): void =>
|
||||||
|
{
|
||||||
|
setAllowAnalytics(null);
|
||||||
|
analyticsPermission.setValue(enabled)
|
||||||
|
.catch(() => setAllowAnalytics(!enabled));
|
||||||
|
};
|
||||||
|
|
||||||
const openShortcutsPage = (): Promise<any> =>
|
const openShortcutsPage = (): Promise<any> =>
|
||||||
browser.tabs.create({
|
browser.tabs.create({
|
||||||
url: "chrome://extensions/shortcuts",
|
url: "chrome://extensions/shortcuts",
|
||||||
@@ -28,6 +45,7 @@ export default function GeneralSection(): React.ReactElement
|
|||||||
setContextAction("open");
|
setContextAction("open");
|
||||||
|
|
||||||
if (import.meta.env.FIREFOX && e.optionValue !== "sidebar")
|
if (import.meta.env.FIREFOX && e.optionValue !== "sidebar")
|
||||||
|
// @ts-expect-error Firefox-only API
|
||||||
browser.sidebarAction.close();
|
browser.sidebarAction.close();
|
||||||
|
|
||||||
setListLocation(e.optionValue as ListLocationType);
|
setListLocation(e.optionValue as ListLocationType);
|
||||||
@@ -56,10 +74,20 @@ export default function GeneralSection(): React.ReactElement
|
|||||||
label={ i18n.t("options_page.general.options.show_notification") }
|
label={ i18n.t("options_page.general.options.show_notification") }
|
||||||
checked={ notifyOnSave ?? false }
|
checked={ notifyOnSave ?? false }
|
||||||
onChange={ (_, e) => setNotifyOnSave(e.checked as boolean) } />
|
onChange={ (_, e) => setNotifyOnSave(e.checked as boolean) } />
|
||||||
|
<Checkbox
|
||||||
|
label={ i18n.t("options_page.general.options.show_partial_save_notification") }
|
||||||
|
checked={ showPartialSaveNotification ?? false }
|
||||||
|
onChange={ (_, e) => setShowPartialSaveNotification(e.checked as boolean) } />
|
||||||
<Checkbox
|
<Checkbox
|
||||||
label={ i18n.t("options_page.general.options.unload_tabs") }
|
label={ i18n.t("options_page.general.options.unload_tabs") }
|
||||||
checked={ dismissOnLoad ?? false }
|
checked={ dismissOnLoad ?? false }
|
||||||
onChange={ (_, e) => setDismissOnLoad(e.checked as boolean) } />
|
onChange={ (_, e) => setDismissOnLoad(e.checked as boolean) } />
|
||||||
|
|
||||||
|
<Checkbox
|
||||||
|
label={ i18n.t("options_page.general.options.allow_analytics") }
|
||||||
|
checked={ allowAnalytics ?? true }
|
||||||
|
disabled={ allowAnalytics === null }
|
||||||
|
onChange={ (_, e) => updateAnalytics(e.checked as boolean) } />
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<Field label={ i18n.t("options_page.general.options.list_locations.title") }>
|
<Field label={ i18n.t("options_page.general.options.list_locations.title") }>
|
||||||
|
|||||||
@@ -1,9 +1,10 @@
|
|||||||
import { useDialog } from "@/contexts/DialogProvider";
|
import { useDialog } from "@/contexts/DialogProvider";
|
||||||
import { cloudDisabled, setCloudStorage } from "@/features/collectionStorage";
|
import { clearGraphicsStorage, cloudDisabled, setCloudStorage, thumbnailCaptureEnabled } from "@/features/collectionStorage";
|
||||||
import { useDangerStyles } from "@/hooks/useDangerStyles";
|
import { useDangerStyles } from "@/hooks/useDangerStyles";
|
||||||
import useStorageInfo from "@/hooks/useStorageInfo";
|
import useStorageInfo from "@/hooks/useStorageInfo";
|
||||||
import { Button, Field, MessageBar, MessageBarBody, MessageBarTitle, ProgressBar } from "@fluentui/react-components";
|
import { Button, Field, InfoLabel, LabelProps, MessageBar, MessageBarBody, MessageBarTitle, ProgressBar, Switch } from "@fluentui/react-components";
|
||||||
import { ArrowDownload20Regular, ArrowUpload20Regular } from "@fluentui/react-icons";
|
import { ArrowDownload20Regular, ArrowUpload20Regular } from "@fluentui/react-icons";
|
||||||
|
import { Unwatch } from "wxt/utils/storage";
|
||||||
import { useOptionsStyles } from "../hooks/useOptionsStyles";
|
import { useOptionsStyles } from "../hooks/useOptionsStyles";
|
||||||
import exportData from "../utils/exportData";
|
import exportData from "../utils/exportData";
|
||||||
import importData from "../utils/importData";
|
import importData from "../utils/importData";
|
||||||
@@ -13,6 +14,7 @@ export default function StorageSection(): React.ReactElement
|
|||||||
const { bytesInUse, storageQuota, usedStorageRatio } = useStorageInfo();
|
const { bytesInUse, storageQuota, usedStorageRatio } = useStorageInfo();
|
||||||
const [importResult, setImportResult] = useState<boolean | null>(null);
|
const [importResult, setImportResult] = useState<boolean | null>(null);
|
||||||
const [isCloudDisabled, setCloudDisabled] = useState<boolean>(null!);
|
const [isCloudDisabled, setCloudDisabled] = useState<boolean>(null!);
|
||||||
|
const [isThumbnailCaptureEnabled, setThumbnailCaptureEnabled] = useState<boolean | null>(null);
|
||||||
|
|
||||||
const dialog = useDialog();
|
const dialog = useDialog();
|
||||||
const cls = useOptionsStyles();
|
const cls = useOptionsStyles();
|
||||||
@@ -20,10 +22,35 @@ export default function StorageSection(): React.ReactElement
|
|||||||
|
|
||||||
useEffect(() =>
|
useEffect(() =>
|
||||||
{
|
{
|
||||||
|
thumbnailCaptureEnabled.getValue().then(setThumbnailCaptureEnabled);
|
||||||
cloudDisabled.getValue().then(setCloudDisabled);
|
cloudDisabled.getValue().then(setCloudDisabled);
|
||||||
return cloudDisabled.watch(setCloudDisabled);
|
|
||||||
|
const unwatchCloud: Unwatch = cloudDisabled.watch(setCloudDisabled);
|
||||||
|
const unwatchThumbnails: Unwatch = thumbnailCaptureEnabled.watch(setThumbnailCaptureEnabled);
|
||||||
|
|
||||||
|
return () =>
|
||||||
|
{
|
||||||
|
unwatchCloud();
|
||||||
|
unwatchThumbnails();
|
||||||
|
};
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
|
const handleSetThumbnailCapture = (enabled: boolean): void =>
|
||||||
|
{
|
||||||
|
setThumbnailCaptureEnabled(null);
|
||||||
|
thumbnailCaptureEnabled.setValue(enabled)
|
||||||
|
.catch(() => setThumbnailCaptureEnabled(!enabled));
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleClearThumbnails = (): void =>
|
||||||
|
dialog.pushPrompt({
|
||||||
|
title: i18n.t("options_page.storage.clear_thumbnails.title"),
|
||||||
|
content: i18n.t("options_page.storage.clear_thumbnails.prompt"),
|
||||||
|
confirmText: i18n.t("common.actions.delete"),
|
||||||
|
destructive: true,
|
||||||
|
onConfirm: () => clearGraphicsStorage()
|
||||||
|
});
|
||||||
|
|
||||||
const handleImport = (): void =>
|
const handleImport = (): void =>
|
||||||
dialog.pushPrompt({
|
dialog.pushPrompt({
|
||||||
title: i18n.t("options_page.storage.import_prompt.title"),
|
title: i18n.t("options_page.storage.import_prompt.title"),
|
||||||
@@ -51,6 +78,29 @@ export default function StorageSection(): React.ReactElement
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
|
<div className={ cls.group }>
|
||||||
|
<Switch
|
||||||
|
checked={ isThumbnailCaptureEnabled ?? true }
|
||||||
|
disabled={ isThumbnailCaptureEnabled === null }
|
||||||
|
onChange={ (_, e) => handleSetThumbnailCapture(e.checked as boolean) }
|
||||||
|
label={ {
|
||||||
|
children: (_: any, props: LabelProps) =>
|
||||||
|
<InfoLabel
|
||||||
|
{ ...props }
|
||||||
|
label={ i18n.t("options_page.storage.thumbnail_capture") }
|
||||||
|
info={
|
||||||
|
<p>
|
||||||
|
{ i18n.t("options_page.storage.thumbnail_capture_notice1") }<br /><br />
|
||||||
|
{ i18n.t("options_page.storage.thumbnail_capture_notice2") }
|
||||||
|
</p>
|
||||||
|
} />
|
||||||
|
} } />
|
||||||
|
|
||||||
|
<Button onClick={ handleClearThumbnails } className={ dangerCls.buttonSubtle } appearance="subtle">
|
||||||
|
{ i18n.t("options_page.storage.clear_thumbnails.action") }
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
|
||||||
{ isCloudDisabled === false &&
|
{ isCloudDisabled === false &&
|
||||||
<Field
|
<Field
|
||||||
label={ i18n.t("options_page.storage.capacity.title") }
|
label={ i18n.t("options_page.storage.capacity.title") }
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
import App from "@/App.tsx";
|
import App from "@/App.tsx";
|
||||||
import "@/assets/global.css";
|
import "@/assets/global.css";
|
||||||
|
import { trackPage } from "@/features/analytics";
|
||||||
import { Tab, TabList } from "@fluentui/react-components";
|
import { Tab, TabList } from "@fluentui/react-components";
|
||||||
import ReactDOM from "react-dom/client";
|
import ReactDOM from "react-dom/client";
|
||||||
import { useOptionsStyles } from "./hooks/useOptionsStyles.ts";
|
import { useOptionsStyles } from "./hooks/useOptionsStyles.ts";
|
||||||
@@ -14,7 +15,7 @@ ReactDOM.createRoot(document.getElementById("root")!).render(
|
|||||||
</App>
|
</App>
|
||||||
);
|
);
|
||||||
|
|
||||||
analytics.page("options_page");
|
trackPage("options_page");
|
||||||
|
|
||||||
function OptionsPage(): React.ReactElement
|
function OptionsPage(): React.ReactElement
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ export default function EditDialog(props: GroupEditDialogProps): ReactElement
|
|||||||
?? ""
|
?? ""
|
||||||
);
|
);
|
||||||
|
|
||||||
const [color, setColor] = useState<chrome.tabGroups.ColorEnum | undefined | "pinned">(
|
const [color, setColor] = useState<`${Browser.tabGroups.Color}` | undefined | "pinned">(
|
||||||
props.type === "collection"
|
props.type === "collection"
|
||||||
? props.collection?.color :
|
? props.collection?.color :
|
||||||
props.group?.pinned === true ? "pinned" : (props.group?.color ?? "blue")
|
props.group?.pinned === true ? "pinned" : (props.group?.color ?? "blue")
|
||||||
@@ -112,8 +112,8 @@ export default function EditDialog(props: GroupEditDialogProps): ReactElement
|
|||||||
{ Object.keys(colorCls).map(i =>
|
{ Object.keys(colorCls).map(i =>
|
||||||
<fui.ToggleButton
|
<fui.ToggleButton
|
||||||
checked={ color === i }
|
checked={ color === i }
|
||||||
onClick={ () => setColor(i as chrome.tabGroups.ColorEnum) }
|
onClick={ () => setColor(i as `${Browser.tabGroups.Color}`) }
|
||||||
className={ fui.mergeClasses(cls.colorButton, colorCls[i as chrome.tabGroups.ColorEnum]) }
|
className={ fui.mergeClasses(cls.colorButton, colorCls[i as `${Browser.tabGroups.Color}`]) }
|
||||||
icon={ {
|
icon={ {
|
||||||
className: cls.colorButton_icon,
|
className: cls.colorButton_icon,
|
||||||
children: <Circle20Filled />
|
children: <Circle20Filled />
|
||||||
@@ -121,7 +121,7 @@ export default function EditDialog(props: GroupEditDialogProps): ReactElement
|
|||||||
key={ i }
|
key={ i }
|
||||||
shape="circular"
|
shape="circular"
|
||||||
>
|
>
|
||||||
{ i18n.t(`colors.${i as chrome.tabGroups.ColorEnum}`) }
|
{ i18n.t(`colors.${i as `${Browser.tabGroups.Color}`}`) }
|
||||||
</fui.ToggleButton>
|
</fui.ToggleButton>
|
||||||
) }
|
) }
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,20 +1,20 @@
|
|||||||
import { getCollectionTitle } from "@/entrypoints/sidepanel/utils/getCollectionTitle";
|
import { getCollectionTitle } from "@/entrypoints/sidepanel/utils/getCollectionTitle";
|
||||||
import getSelectedTabs from "@/entrypoints/sidepanel/utils/getSelectedTabs";
|
|
||||||
import useSettings from "@/hooks/useSettings";
|
import useSettings from "@/hooks/useSettings";
|
||||||
import { GroupItem, TabItem } from "@/models/CollectionModels";
|
import { TabItem } from "@/models/CollectionModels";
|
||||||
import { Button, Caption1, makeStyles, mergeClasses, Subtitle2, tokens, Tooltip } from "@fluentui/react-components";
|
import { Button, Caption1, makeStyles, mergeClasses, Subtitle2, tokens, Tooltip } from "@fluentui/react-components";
|
||||||
import { Add20Filled, Add20Regular, bundleIcon } from "@fluentui/react-icons";
|
import { Add20Filled, Add20Regular, bundleIcon } from "@fluentui/react-icons";
|
||||||
import CollectionContext, { CollectionContextType } from "../../contexts/CollectionContext";
|
import CollectionContext, { CollectionContextType } from "../../contexts/CollectionContext";
|
||||||
import { useCollections } from "../../contexts/CollectionsProvider";
|
import { useCollections } from "../../contexts/CollectionsProvider";
|
||||||
import CollectionMoreButton from "./CollectionMoreButton";
|
import CollectionMoreButton from "./CollectionMoreButton";
|
||||||
import OpenCollectionButton from "./OpenCollectionButton";
|
import OpenCollectionButton from "./OpenCollectionButton";
|
||||||
import saveTabsToCollection from "@/utils/saveTabsToCollection";
|
import sendPartialSaveNotification from "@/utils/sendPartialSaveNotification";
|
||||||
|
import { getTabsToSaveAsync } from "@/utils/getTabsToSaveAsync";
|
||||||
|
|
||||||
export default function CollectionHeader({ dragHandleRef, dragHandleProps }: CollectionHeaderProps): React.ReactElement
|
export default function CollectionHeader({ dragHandleRef, dragHandleProps }: CollectionHeaderProps): React.ReactElement
|
||||||
{
|
{
|
||||||
const [contextOpen, setContextOpen] = useState<boolean>(false);
|
const [contextOpen, setContextOpen] = useState<boolean>(false);
|
||||||
const [listLocation] = useSettings("listLocation");
|
const [listLocation] = useSettings("listLocation");
|
||||||
const isTab: boolean = listLocation === "tab" || listLocation === "pinned";
|
const isTabView: boolean = listLocation === "tab" || listLocation === "pinned";
|
||||||
const { updateCollection } = useCollections();
|
const { updateCollection } = useCollections();
|
||||||
const { tabCount, collection } = useContext<CollectionContextType>(CollectionContext);
|
const { tabCount, collection } = useContext<CollectionContextType>(CollectionContext);
|
||||||
const [alwaysShowToolbars] = useSettings("alwaysShowToolbars");
|
const [alwaysShowToolbars] = useSettings("alwaysShowToolbars");
|
||||||
@@ -23,10 +23,16 @@ export default function CollectionHeader({ dragHandleRef, dragHandleProps }: Col
|
|||||||
|
|
||||||
const handleAddSelected = async () =>
|
const handleAddSelected = async () =>
|
||||||
{
|
{
|
||||||
const newTabs: (TabItem | GroupItem)[] = isTab ?
|
const [newTabs, skipCount] = await getTabsToSaveAsync();
|
||||||
(await saveTabsToCollection(false)).items :
|
|
||||||
await getSelectedTabs();
|
if (newTabs.length > 0)
|
||||||
updateCollection({ ...collection, items: [...collection.items, ...newTabs] }, collection.timestamp);
|
await updateCollection({
|
||||||
|
...collection,
|
||||||
|
items: [...collection.items, ...newTabs.map<TabItem>(i => ({ type: "tab", url: i.url!, title: i.title }))]
|
||||||
|
}, collection.timestamp);
|
||||||
|
|
||||||
|
if (skipCount > 0)
|
||||||
|
await sendPartialSaveNotification();
|
||||||
};
|
};
|
||||||
|
|
||||||
const cls = useStyles();
|
const cls = useStyles();
|
||||||
@@ -59,7 +65,7 @@ export default function CollectionHeader({ dragHandleRef, dragHandleProps }: Col
|
|||||||
>
|
>
|
||||||
{ tabCount < 1 ?
|
{ tabCount < 1 ?
|
||||||
<Button icon={ <AddIcon /> } appearance="subtle" onClick={ handleAddSelected }>
|
<Button icon={ <AddIcon /> } appearance="subtle" onClick={ handleAddSelected }>
|
||||||
{ isTab ? i18n.t("collections.menu.add_all") : i18n.t("collections.menu.add_selected") }
|
{ isTabView ? i18n.t("collections.menu.add_all") : i18n.t("collections.menu.add_selected") }
|
||||||
</Button>
|
</Button>
|
||||||
:
|
:
|
||||||
<OpenCollectionButton onOpenChange={ (_, e) => setContextOpen(e.open) } />
|
<OpenCollectionButton onOpenChange={ (_, e) => setContextOpen(e.open) } />
|
||||||
|
|||||||
@@ -3,21 +3,21 @@ import EditDialog from "@/entrypoints/sidepanel/components/EditDialog";
|
|||||||
import CollectionContext, { CollectionContextType } from "@/entrypoints/sidepanel/contexts/CollectionContext";
|
import CollectionContext, { CollectionContextType } from "@/entrypoints/sidepanel/contexts/CollectionContext";
|
||||||
import { useCollections } from "@/entrypoints/sidepanel/contexts/CollectionsProvider";
|
import { useCollections } from "@/entrypoints/sidepanel/contexts/CollectionsProvider";
|
||||||
import GroupContext, { GroupContextType } from "@/entrypoints/sidepanel/contexts/GroupContext";
|
import GroupContext, { GroupContextType } from "@/entrypoints/sidepanel/contexts/GroupContext";
|
||||||
import getSelectedTabs from "@/entrypoints/sidepanel/utils/getSelectedTabs";
|
|
||||||
import { useDangerStyles } from "@/hooks/useDangerStyles";
|
import { useDangerStyles } from "@/hooks/useDangerStyles";
|
||||||
import useSettings from "@/hooks/useSettings";
|
import useSettings from "@/hooks/useSettings";
|
||||||
import { TabItem } from "@/models/CollectionModels";
|
import { TabItem } from "@/models/CollectionModels";
|
||||||
import { sendMessage } from "@/utils/messaging";
|
import { sendMessage } from "@/utils/messaging";
|
||||||
import saveTabsToCollection from "@/utils/saveTabsToCollection";
|
|
||||||
import { Button, Menu, MenuItem, MenuList, MenuPopover, MenuTrigger, Tooltip } from "@fluentui/react-components";
|
import { Button, Menu, MenuItem, MenuList, MenuPopover, MenuTrigger, Tooltip } from "@fluentui/react-components";
|
||||||
import * as ic from "@fluentui/react-icons";
|
import * as ic from "@fluentui/react-icons";
|
||||||
import { ReactElement } from "react";
|
import { ReactElement } from "react";
|
||||||
import { openGroup } from "../../utils/opener";
|
import { openGroup } from "../../utils/opener";
|
||||||
|
import { getTabsToSaveAsync } from "@/utils/getTabsToSaveAsync";
|
||||||
|
import sendPartialSaveNotification from "@/utils/sendPartialSaveNotification";
|
||||||
|
|
||||||
export default function GroupMoreMenu(): ReactElement
|
export default function GroupMoreMenu(): ReactElement
|
||||||
{
|
{
|
||||||
const [listLocation] = useSettings("listLocation");
|
const [listLocation] = useSettings("listLocation");
|
||||||
const isTab: boolean = listLocation === "tab" || listLocation === "pinned";
|
const isTabView: boolean = listLocation === "tab" || listLocation === "pinned";
|
||||||
const { group, indices } = useContext<GroupContextType>(GroupContext);
|
const { group, indices } = useContext<GroupContextType>(GroupContext);
|
||||||
const { hasPinnedGroup, collection } = useContext<CollectionContextType>(CollectionContext);
|
const { hasPinnedGroup, collection } = useContext<CollectionContextType>(CollectionContext);
|
||||||
const [deletePrompt] = useSettings("deletePrompt");
|
const [deletePrompt] = useSettings("deletePrompt");
|
||||||
@@ -67,10 +67,16 @@ export default function GroupMoreMenu(): ReactElement
|
|||||||
|
|
||||||
const handleAddSelected = async () =>
|
const handleAddSelected = async () =>
|
||||||
{
|
{
|
||||||
const newTabs: TabItem[] = isTab ?
|
const [newTabs, skipCount] = await getTabsToSaveAsync();
|
||||||
(await saveTabsToCollection(false)).items.flatMap(i => i.type === "tab" ? i : i.items) :
|
|
||||||
await getSelectedTabs();
|
if (newTabs.length > 0)
|
||||||
updateGroup({ ...group, items: [...group.items, ...newTabs] }, collection.timestamp, indices[1]);
|
await updateGroup({
|
||||||
|
...group,
|
||||||
|
items: [...group.items, ...newTabs.map<TabItem>(i => ({ type: "tab", url: i.url!, title: i.title }))]
|
||||||
|
}, collection.timestamp, indices[1]);
|
||||||
|
|
||||||
|
if (skipCount > 0)
|
||||||
|
await sendPartialSaveNotification();
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
@@ -90,7 +96,7 @@ export default function GroupMoreMenu(): ReactElement
|
|||||||
}
|
}
|
||||||
|
|
||||||
<MenuItem icon={ <AddIcon /> } onClick={ handleAddSelected }>
|
<MenuItem icon={ <AddIcon /> } onClick={ handleAddSelected }>
|
||||||
{ isTab ? i18n.t("groups.menu.add_all") : i18n.t("groups.menu.add_selected") }
|
{ isTabView ? i18n.t("groups.menu.add_all") : i18n.t("groups.menu.add_selected") }
|
||||||
</MenuItem>
|
</MenuItem>
|
||||||
|
|
||||||
<MenuItem icon={ <EditIcon /> } onClick={ handleEdit }>
|
<MenuItem icon={ <EditIcon /> } onClick={ handleEdit }>
|
||||||
|
|||||||
@@ -43,12 +43,12 @@ export default function CollectionsProvider({ children }: React.PropsWithChildre
|
|||||||
sendMessage("refreshCollections", undefined);
|
sendMessage("refreshCollections", undefined);
|
||||||
};
|
};
|
||||||
|
|
||||||
const addCollection = (collection: CollectionItem): void =>
|
const addCollection = async (collection: CollectionItem): Promise<void> =>
|
||||||
{
|
{
|
||||||
updateStorage([collection, ...collections]);
|
await updateStorage([collection, ...collections]);
|
||||||
};
|
};
|
||||||
|
|
||||||
const removeItem = (...indices: number[]): void =>
|
const removeItem = async (...indices: number[]): Promise<void> =>
|
||||||
{
|
{
|
||||||
const collectionIndex: number = collections.findIndex(i => i.timestamp === indices[0]);
|
const collectionIndex: number = collections.findIndex(i => i.timestamp === indices[0]);
|
||||||
|
|
||||||
@@ -59,34 +59,34 @@ export default function CollectionsProvider({ children }: React.PropsWithChildre
|
|||||||
else
|
else
|
||||||
collections.splice(collectionIndex, 1);
|
collections.splice(collectionIndex, 1);
|
||||||
|
|
||||||
updateStorage(collections);
|
await updateStorage(collections);
|
||||||
};
|
};
|
||||||
|
|
||||||
const updateCollections = (collectionList: CollectionItem[]): void =>
|
const updateCollections = async (collectionList: CollectionItem[]): Promise<void> =>
|
||||||
{
|
{
|
||||||
updateStorage(collectionList);
|
await updateStorage(collectionList);
|
||||||
};
|
};
|
||||||
|
|
||||||
const updateCollection = (collection: CollectionItem, id: number): void =>
|
const updateCollection = async (collection: CollectionItem, id: number): Promise<void> =>
|
||||||
{
|
{
|
||||||
const index: number = collections.findIndex(i => i.timestamp === id);
|
const index: number = collections.findIndex(i => i.timestamp === id);
|
||||||
collections[index] = collection;
|
collections[index] = collection;
|
||||||
updateStorage(collections);
|
await updateStorage(collections);
|
||||||
};
|
};
|
||||||
|
|
||||||
const updateGroup = (group: GroupItem, collectionId: number, groupIndex: number): void =>
|
const updateGroup = async (group: GroupItem, collectionId: number, groupIndex: number): Promise<void> =>
|
||||||
{
|
{
|
||||||
const collectionIndex: number = collections.findIndex(i => i.timestamp === collectionId);
|
const collectionIndex: number = collections.findIndex(i => i.timestamp === collectionId);
|
||||||
collections[collectionIndex].items[groupIndex] = group;
|
collections[collectionIndex].items[groupIndex] = group;
|
||||||
updateStorage(collections);
|
await updateStorage(collections);
|
||||||
};
|
};
|
||||||
|
|
||||||
const ungroup = (collectionId: number, groupIndex: number): void =>
|
const ungroup = async (collectionId: number, groupIndex: number): Promise<void> =>
|
||||||
{
|
{
|
||||||
const collectionIndex: number = collections.findIndex(i => i.timestamp === collectionId);
|
const collectionIndex: number = collections.findIndex(i => i.timestamp === collectionId);
|
||||||
const group = collections[collectionIndex].items[groupIndex] as GroupItem;
|
const group = collections[collectionIndex].items[groupIndex] as GroupItem;
|
||||||
collections[collectionIndex].items.splice(groupIndex, 1, ...group.items);
|
collections[collectionIndex].items.splice(groupIndex, 1, ...group.items);
|
||||||
updateStorage(collections);
|
await updateStorage(collections);
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
@@ -110,12 +110,12 @@ export type CollectionsContextType =
|
|||||||
tilesView: boolean;
|
tilesView: boolean;
|
||||||
|
|
||||||
refreshCollections: () => Promise<void>;
|
refreshCollections: () => Promise<void>;
|
||||||
addCollection: (collection: CollectionItem) => void;
|
addCollection: (collection: CollectionItem) => Promise<void>;
|
||||||
|
|
||||||
updateCollections: (collections: CollectionItem[]) => void;
|
updateCollections: (collections: CollectionItem[]) => Promise<void>;
|
||||||
updateCollection: (collection: CollectionItem, id: number) => void;
|
updateCollection: (collection: CollectionItem, id: number) => Promise<void>;
|
||||||
updateGroup: (group: GroupItem, collectionId: number, groupIndex: number) => void;
|
updateGroup: (group: GroupItem, collectionId: number, groupIndex: number) => Promise<void>;
|
||||||
ungroup: (collectionId: number, groupIndex: number) => void;
|
ungroup: (collectionId: number, groupIndex: number) => Promise<void>;
|
||||||
|
|
||||||
removeItem: (...indices: number[]) => void;
|
removeItem: (...indices: number[]) => Promise<void>;
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -44,11 +44,11 @@ export default function FilterCollectionsButton({ value, onChange }: FilterColle
|
|||||||
<ColorIcon
|
<ColorIcon
|
||||||
className={ fui.mergeClasses(
|
className={ fui.mergeClasses(
|
||||||
cls.colorIcon,
|
cls.colorIcon,
|
||||||
colorCls[i as chrome.tabGroups.ColorEnum]
|
colorCls[i as `${Browser.tabGroups.Color}`]
|
||||||
) } />
|
) } />
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
{ i18n.t(`colors.${i as chrome.tabGroups.ColorEnum}`) }
|
{ i18n.t(`colors.${i as `${Browser.tabGroups.Color}`}`) }
|
||||||
</fui.MenuItemCheckbox>
|
</fui.MenuItemCheckbox>
|
||||||
) }
|
) }
|
||||||
</fui.MenuList>
|
</fui.MenuList>
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
import resolveConflict from "@/features/collectionStorage/utils/resolveConflict";
|
import resolveConflict from "@/features/collectionStorage/utils/resolveConflict";
|
||||||
import { Button, MessageBar, MessageBarActions, MessageBarBody, MessageBarProps, MessageBarTitle } from "@fluentui/react-components";
|
import { Button, MessageBar, MessageBarActions, MessageBarBody, MessageBarProps, MessageBarTitle } from "@fluentui/react-components";
|
||||||
import { ArrowUpload20Regular, CloudArrowDown20Regular, Wrench20Regular } from "@fluentui/react-icons";
|
import { ArrowDownload20Regular, ArrowUpload20Regular, CloudArrowDown20Regular, Wrench20Regular } from "@fluentui/react-icons";
|
||||||
import { useCollections } from "../../../contexts/CollectionsProvider";
|
import { useCollections } from "../../../contexts/CollectionsProvider";
|
||||||
|
import exportData from "@/entrypoints/options/utils/exportData";
|
||||||
|
|
||||||
export default function CloudIssueMessages(props: MessageBarProps): React.ReactElement
|
export default function CloudIssueMessages(props: MessageBarProps): React.ReactElement
|
||||||
{
|
{
|
||||||
@@ -36,6 +37,9 @@ export default function CloudIssueMessages(props: MessageBarProps): React.ReactE
|
|||||||
{ i18n.t("merge_conflict_message.message") }
|
{ i18n.t("merge_conflict_message.message") }
|
||||||
</MessageBarBody>
|
</MessageBarBody>
|
||||||
<MessageBarActions>
|
<MessageBarActions>
|
||||||
|
<Button icon={ <ArrowDownload20Regular /> } onClick={ exportData }>
|
||||||
|
{ i18n.t("options_page.storage.export") }
|
||||||
|
</Button>
|
||||||
<Button icon={ <ArrowUpload20Regular /> } onClick={ () => overrideStorageWith("local") }>
|
<Button icon={ <ArrowUpload20Regular /> } onClick={ () => overrideStorageWith("local") }>
|
||||||
{ i18n.t("merge_conflict_message.accept_local") }
|
{ i18n.t("merge_conflict_message.accept_local") }
|
||||||
</Button>
|
</Button>
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import useStorageInfo from "@/hooks/useStorageInfo";
|
import useStorageInfo from "@/hooks/useStorageInfo";
|
||||||
import { MessageBar, MessageBarBody, MessageBarProps, MessageBarTitle } from "@fluentui/react-components";
|
import { MessageBar, MessageBarBody, MessageBarProps, MessageBarTitle } from "@fluentui/react-components";
|
||||||
|
|
||||||
export default function StorageCapacityIssueMessage(props: MessageBarProps): JSX.Element
|
export default function StorageCapacityIssueMessage(props: MessageBarProps): React.ReactElement
|
||||||
{
|
{
|
||||||
const { usedStorageRatio } = useStorageInfo();
|
const { usedStorageRatio } = useStorageInfo();
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,11 @@
|
|||||||
import { useCollections } from "@/entrypoints/sidepanel/contexts/CollectionsProvider";
|
import { useCollections } from "@/entrypoints/sidepanel/contexts/CollectionsProvider";
|
||||||
|
import { track } from "@/features/analytics";
|
||||||
import useSettings, { SettingsValue } from "@/hooks/useSettings";
|
import useSettings, { SettingsValue } from "@/hooks/useSettings";
|
||||||
import saveTabsToCollection from "@/utils/saveTabsToCollection";
|
import { CollectionItem } from "@/models/CollectionModels";
|
||||||
|
import { closeTabsAsync } from "@/utils/closeTabsAsync";
|
||||||
|
import { createCollectionFromTabs } from "@/utils/createCollectionFromTabs";
|
||||||
|
import { getTabsToSaveAsync } from "@/utils/getTabsToSaveAsync";
|
||||||
|
import sendPartialSaveNotification from "@/utils/sendPartialSaveNotification";
|
||||||
import watchTabSelection from "@/utils/watchTabSelection";
|
import watchTabSelection from "@/utils/watchTabSelection";
|
||||||
import { Menu, MenuButtonProps, MenuItem, MenuList, MenuPopover, MenuTrigger, SplitButton } from "@fluentui/react-components";
|
import { Menu, MenuButtonProps, MenuItem, MenuList, MenuPopover, MenuTrigger, SplitButton } from "@fluentui/react-components";
|
||||||
import * as ic from "@fluentui/react-icons";
|
import * as ic from "@fluentui/react-icons";
|
||||||
@@ -14,8 +19,26 @@ export default function ActionButton(): ReactElement
|
|||||||
|
|
||||||
const handleAction = async (primary: boolean) =>
|
const handleAction = async (primary: boolean) =>
|
||||||
{
|
{
|
||||||
const colection = await saveTabsToCollection(primary === (defaultAction === "set_aside"));
|
const [tabs, skipCount] = await getTabsToSaveAsync();
|
||||||
addCollection(colection);
|
|
||||||
|
if (tabs.length < 1)
|
||||||
|
{
|
||||||
|
await sendPartialSaveNotification();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const collection: CollectionItem = await createCollectionFromTabs(tabs);
|
||||||
|
await addCollection(collection);
|
||||||
|
|
||||||
|
if (skipCount > 0)
|
||||||
|
await sendPartialSaveNotification();
|
||||||
|
|
||||||
|
const closeTabs: boolean = primary === (defaultAction === "set_aside");
|
||||||
|
|
||||||
|
if (closeTabs)
|
||||||
|
await closeTabsAsync(tabs);
|
||||||
|
|
||||||
|
track(closeTabs ? "set_aside" : "save");
|
||||||
};
|
};
|
||||||
|
|
||||||
useEffect(() =>
|
useEffect(() =>
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
import App from "@/App.tsx";
|
import App from "@/App.tsx";
|
||||||
import "@/assets/global.css";
|
import "@/assets/global.css";
|
||||||
|
import { trackPage } from "@/features/analytics";
|
||||||
import { useLocalMigration } from "@/features/migration";
|
import { useLocalMigration } from "@/features/migration";
|
||||||
import useWelcomeDialog from "@/features/v3welcome/hooks/useWelcomeDialog";
|
import useWelcomeDialog from "@/features/v3welcome/hooks/useWelcomeDialog";
|
||||||
import { Divider, makeStyles } from "@fluentui/react-components";
|
import { Divider, makeStyles } from "@fluentui/react-components";
|
||||||
@@ -7,6 +8,8 @@ import ReactDOM from "react-dom/client";
|
|||||||
import CollectionsProvider from "./contexts/CollectionsProvider";
|
import CollectionsProvider from "./contexts/CollectionsProvider";
|
||||||
import CollectionListView from "./layouts/collections/CollectionListView";
|
import CollectionListView from "./layouts/collections/CollectionListView";
|
||||||
import Header from "./layouts/header/Header";
|
import Header from "./layouts/header/Header";
|
||||||
|
import { useSettingsReviewDialog } from "@/features/settingsReview";
|
||||||
|
import useDialogTrain from "@/hooks/useDialogTrain";
|
||||||
|
|
||||||
ReactDOM.createRoot(document.getElementById("root")!).render(
|
ReactDOM.createRoot(document.getElementById("root")!).render(
|
||||||
<App>
|
<App>
|
||||||
@@ -15,14 +18,17 @@ ReactDOM.createRoot(document.getElementById("root")!).render(
|
|||||||
);
|
);
|
||||||
|
|
||||||
document.title = i18n.t("manifest.name");
|
document.title = i18n.t("manifest.name");
|
||||||
analytics.page("collection_list");
|
trackPage("collection_list");
|
||||||
|
|
||||||
function MainPage(): React.ReactElement
|
function MainPage(): React.ReactElement
|
||||||
{
|
{
|
||||||
const cls = useStyles();
|
const cls = useStyles();
|
||||||
|
|
||||||
useLocalMigration();
|
useLocalMigration();
|
||||||
useWelcomeDialog();
|
useDialogTrain(
|
||||||
|
useWelcomeDialog,
|
||||||
|
useSettingsReviewDialog
|
||||||
|
);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<CollectionsProvider>
|
<CollectionsProvider>
|
||||||
|
|||||||
@@ -1,11 +1,21 @@
|
|||||||
|
import { track } from "@/features/analytics";
|
||||||
import { CollectionItem, TabItem } from "@/models/CollectionModels";
|
import { CollectionItem, TabItem } from "@/models/CollectionModels";
|
||||||
import sendNotification from "@/utils/sendNotification";
|
import sendNotification from "@/utils/sendNotification";
|
||||||
import { Bookmarks } from "wxt/browser";
|
|
||||||
import { getCollectionTitle } from "./getCollectionTitle";
|
import { getCollectionTitle } from "./getCollectionTitle";
|
||||||
|
|
||||||
export default async function exportCollectionToBookmarks(collection: CollectionItem)
|
export default async function exportCollectionToBookmarks(collection: CollectionItem)
|
||||||
{
|
{
|
||||||
const rootFolder: Bookmarks.BookmarkTreeNode = await browser.bookmarks.create({
|
const permissions: Browser.permissions.Permissions = await browser.permissions.getAll();
|
||||||
|
|
||||||
|
if (!permissions.permissions?.includes("bookmarks"))
|
||||||
|
{
|
||||||
|
const granted: boolean = await browser.permissions.request({ permissions: ["bookmarks"] });
|
||||||
|
|
||||||
|
if (!granted)
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const rootFolder: Browser.bookmarks.BookmarkTreeNode = await browser.bookmarks.create({
|
||||||
title: getCollectionTitle(collection)
|
title: getCollectionTitle(collection)
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -31,6 +41,8 @@ export default async function exportCollectionToBookmarks(collection: Collection
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
track("bookmarks_saved");
|
||||||
|
|
||||||
await sendNotification({
|
await sendNotification({
|
||||||
title: i18n.t("notifications.bookmark_saved.title"),
|
title: i18n.t("notifications.bookmark_saved.title"),
|
||||||
message: i18n.t("notifications.bookmark_saved.message"),
|
message: i18n.t("notifications.bookmark_saved.message"),
|
||||||
|
|||||||
@@ -61,5 +61,5 @@ export default function filterCollections(
|
|||||||
export type CollectionFilterType =
|
export type CollectionFilterType =
|
||||||
{
|
{
|
||||||
query: string;
|
query: string;
|
||||||
colors: (chrome.tabGroups.ColorEnum | "none")[];
|
colors: (`${Browser.tabGroups.Color}` | "none")[];
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,10 +1,9 @@
|
|||||||
import { TabItem } from "@/models/CollectionModels";
|
import { TabItem } from "@/models/CollectionModels";
|
||||||
import sendNotification from "@/utils/sendNotification";
|
import sendNotification from "@/utils/sendNotification";
|
||||||
import { Tabs } from "wxt/browser";
|
|
||||||
|
|
||||||
export default async function getSelectedTabs(): Promise<TabItem[]>
|
export default async function getSelectedTabs(): Promise<TabItem[]>
|
||||||
{
|
{
|
||||||
let tabs: Tabs.Tab[] = await browser.tabs.query({ currentWindow: true, highlighted: true });
|
let tabs: Browser.tabs.Tab[] = await browser.tabs.query({ currentWindow: true, highlighted: true });
|
||||||
const tabCount: number = tabs.length;
|
const tabCount: number = tabs.length;
|
||||||
|
|
||||||
tabs = tabs.filter(i =>
|
tabs = tabs.filter(i =>
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
import { getCollectionTitle } from "@/entrypoints/sidepanel/utils/getCollectionTitle";
|
import { getCollectionTitle } from "@/entrypoints/sidepanel/utils/getCollectionTitle";
|
||||||
import { CollectionItem, GroupItem, TabItem } from "@/models/CollectionModels";
|
import { CollectionItem, GroupItem, TabItem } from "@/models/CollectionModels";
|
||||||
import { settings } from "@/utils/settings";
|
import { settings } from "@/utils/settings";
|
||||||
import { Tabs, Windows } from "wxt/browser";
|
|
||||||
|
|
||||||
export async function openCollection(collection: CollectionItem, targetWindow?: "current" | "new" | "incognito"): Promise<void>
|
export async function openCollection(collection: CollectionItem, targetWindow?: "current" | "new" | "incognito"): Promise<void>
|
||||||
{
|
{
|
||||||
@@ -55,7 +54,7 @@ export async function openGroup(group: GroupItem, newWindow: boolean = false): P
|
|||||||
async function createGroup(group: GroupItem, windowId: number, discard?: boolean): Promise<void>
|
async function createGroup(group: GroupItem, windowId: number, discard?: boolean): Promise<void>
|
||||||
{
|
{
|
||||||
discard ??= await settings.dismissOnLoad.getValue();
|
discard ??= await settings.dismissOnLoad.getValue();
|
||||||
const tabs: Tabs.Tab[] = await Promise.all(group.items.map(async i =>
|
const tabs: Browser.tabs.Tab[] = await Promise.all(group.items.map(async i =>
|
||||||
await createTab(i.url, windowId, discard, group.pinned)
|
await createTab(i.url, windowId, discard, group.pinned)
|
||||||
));
|
));
|
||||||
|
|
||||||
@@ -63,21 +62,21 @@ async function createGroup(group: GroupItem, windowId: number, discard?: boolean
|
|||||||
if (group.pinned === true)
|
if (group.pinned === true)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
const groupId: number = await chrome.tabs.group({
|
const groupId: number = await browser.tabs.group({
|
||||||
tabIds: tabs.filter(i => i.windowId === windowId).map(i => i.id!),
|
tabIds: tabs.filter(i => i.windowId === windowId).map(i => i.id!) as [number, ...number[]],
|
||||||
createProperties: { windowId }
|
createProperties: { windowId }
|
||||||
});
|
});
|
||||||
|
|
||||||
await chrome.tabGroups.update(groupId, {
|
await browser.tabGroups.update(groupId, {
|
||||||
title: group.title,
|
title: group.title,
|
||||||
color: group.color
|
color: group.color
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
async function manageWindow(handle: (windowId: number) => Promise<void>, windowProps?: Windows.CreateCreateDataType): Promise<void>
|
async function manageWindow(handle: (windowId: number) => Promise<void>, windowProps?: Browser.windows.CreateData): Promise<void>
|
||||||
{
|
{
|
||||||
const currentWindow: Windows.Window = windowProps ?
|
const currentWindow: Browser.windows.Window = windowProps ?
|
||||||
await browser.windows.create({ url: "about:blank", focused: false, ...windowProps }) :
|
(await browser.windows.create({ url: "about:blank", focused: false, ...windowProps }))! :
|
||||||
await browser.windows.getCurrent();
|
await browser.windows.getCurrent();
|
||||||
const windowId: number = currentWindow.id!;
|
const windowId: number = currentWindow.id!;
|
||||||
|
|
||||||
@@ -90,7 +89,7 @@ async function manageWindow(handle: (windowId: number) => Promise<void>, windowP
|
|||||||
await browser.tabs.remove(currentWindow.tabs![0].id!);
|
await browser.tabs.remove(currentWindow.tabs![0].id!);
|
||||||
}
|
}
|
||||||
|
|
||||||
async function createTab(url: string, windowId: number, discard: boolean, pinned?: boolean): Promise<Tabs.Tab>
|
async function createTab(url: string, windowId: number, discard: boolean, pinned?: boolean): Promise<Browser.tabs.Tab>
|
||||||
{
|
{
|
||||||
const tab = await browser.tabs.create({ url, windowId: windowId, active: false, pinned });
|
const tab = await browser.tabs.create({ url, windowId: windowId, active: false, pinned });
|
||||||
|
|
||||||
@@ -102,7 +101,7 @@ async function createTab(url: string, windowId: number, discard: boolean, pinned
|
|||||||
|
|
||||||
function discardOnLoad(tabId: number): void
|
function discardOnLoad(tabId: number): void
|
||||||
{
|
{
|
||||||
const handleTabUpdated = (id: number, _: any, tab: Tabs.Tab) =>
|
const handleTabUpdated = (id: number, _: any, tab: Browser.tabs.Tab) =>
|
||||||
{
|
{
|
||||||
if (id !== tabId || !tab.url)
|
if (id !== tabId || !tab.url)
|
||||||
return;
|
return;
|
||||||
|
|||||||
+1
-1
@@ -50,7 +50,7 @@ export default defineConfig([
|
|||||||
"@stylistic/semi": ["error", "always"],
|
"@stylistic/semi": ["error", "always"],
|
||||||
"@stylistic/block-spacing": ["warn", "always"],
|
"@stylistic/block-spacing": ["warn", "always"],
|
||||||
"@stylistic/arrow-spacing": ["warn", { before: true, after: true }],
|
"@stylistic/arrow-spacing": ["warn", { before: true, after: true }],
|
||||||
"@stylistic/indent": ["warn", "tab"],
|
"@stylistic/indent": ["warn", "tab", { assignmentOperator: "off" }],
|
||||||
"@stylistic/quotes": ["error", "double"],
|
"@stylistic/quotes": ["error", "double"],
|
||||||
"@stylistic/comma-spacing": ["warn"],
|
"@stylistic/comma-spacing": ["warn"],
|
||||||
"@stylistic/comma-dangle": ["warn", "never"],
|
"@stylistic/comma-dangle": ["warn", "never"],
|
||||||
|
|||||||
@@ -1,3 +1,55 @@
|
|||||||
export { default as userPropertiesStorage } from "./utils/userPropertiesStorage";
|
import { analytics } from "./utils/analytics";
|
||||||
export { default as trackError } from "./utils/trackError";
|
import analyticsPermission from "./utils/analyticsPermission";
|
||||||
export { default as track } from "./utils/track";
|
import { getUserProperties, userId } from "./utils/getUserProperties";
|
||||||
|
|
||||||
|
export { analyticsPermission };
|
||||||
|
|
||||||
|
export async function track(eventName: string, eventProperties?: Record<string, string>): Promise<void>
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
if (!await analyticsPermission.getValue())
|
||||||
|
return;
|
||||||
|
|
||||||
|
analytics.track(eventName, eventProperties);
|
||||||
|
}
|
||||||
|
catch (ex)
|
||||||
|
{
|
||||||
|
console.error("Failed to send analytics event", ex);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function trackError(name: string, error: Error): Promise<void>
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
if (!await analyticsPermission.getValue())
|
||||||
|
return;
|
||||||
|
|
||||||
|
analytics.track(name, {
|
||||||
|
name: error.name,
|
||||||
|
message: error.message,
|
||||||
|
stack: error.stack ?? "no_stack"
|
||||||
|
});
|
||||||
|
}
|
||||||
|
catch (ex)
|
||||||
|
{
|
||||||
|
console.error("Failed to send error report", ex);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function trackPage(pageName: string): Promise<void>
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
if (!await analyticsPermission.getValue())
|
||||||
|
return;
|
||||||
|
|
||||||
|
analytics.identify(await userId.getValue() as string, await getUserProperties());
|
||||||
|
analytics.page(pageName);
|
||||||
|
}
|
||||||
|
catch (ex)
|
||||||
|
{
|
||||||
|
console.error("Failed to send page view", ex);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -0,0 +1,12 @@
|
|||||||
|
import { createAnalytics } from "@wxt-dev/analytics";
|
||||||
|
import { googleAnalytics4 } from "@wxt-dev/analytics/providers/google-analytics-4";
|
||||||
|
|
||||||
|
export const analytics = createAnalytics({
|
||||||
|
providers:
|
||||||
|
[
|
||||||
|
googleAnalytics4({
|
||||||
|
apiSecret: import.meta.env.WXT_GA4_API_SECRET,
|
||||||
|
measurementId: import.meta.env.WXT_GA4_MEASUREMENT_ID
|
||||||
|
})
|
||||||
|
]
|
||||||
|
});
|
||||||
@@ -0,0 +1,74 @@
|
|||||||
|
import { Unwatch, WatchCallback } from "wxt/utils/storage";
|
||||||
|
import { analytics } from "./analytics";
|
||||||
|
|
||||||
|
const analyticsPermission: Pick<WxtStorageItem<boolean, Record<string, unknown>>, "getValue" | "watch" | "setValue"> =
|
||||||
|
{
|
||||||
|
getValue: async (): Promise<boolean> =>
|
||||||
|
{
|
||||||
|
const isGranted: boolean = import.meta.env.FIREFOX
|
||||||
|
? await browser.permissions.contains({
|
||||||
|
data_collection: ["technicalAndInteraction"]
|
||||||
|
} as Browser.permissions.Permissions)
|
||||||
|
: await allowAnalytics.getValue();
|
||||||
|
|
||||||
|
analytics.setEnabled(isGranted);
|
||||||
|
|
||||||
|
return isGranted;
|
||||||
|
},
|
||||||
|
|
||||||
|
setValue: async (value: boolean) =>
|
||||||
|
{
|
||||||
|
if (!import.meta.env.FIREFOX)
|
||||||
|
{
|
||||||
|
await allowAnalytics.setValue(value);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
let result: boolean = false;
|
||||||
|
|
||||||
|
if (value)
|
||||||
|
result = await browser.permissions.request({
|
||||||
|
data_collection: ["technicalAndInteraction"]
|
||||||
|
} as Browser.permissions.Permissions);
|
||||||
|
else
|
||||||
|
result = await browser.permissions.remove({
|
||||||
|
data_collection: ["technicalAndInteraction"]
|
||||||
|
} as Browser.permissions.Permissions);
|
||||||
|
|
||||||
|
if (!result)
|
||||||
|
throw new Error("Permission request was denied");
|
||||||
|
},
|
||||||
|
|
||||||
|
watch: (cb: WatchCallback<boolean>): Unwatch =>
|
||||||
|
{
|
||||||
|
if (!import.meta.env.FIREFOX)
|
||||||
|
return allowAnalytics.watch(cb);
|
||||||
|
|
||||||
|
const listener = async (permissions: Browser.permissions.Permissions): Promise<void> =>
|
||||||
|
{
|
||||||
|
// @ts-expect-error Firefox-only API
|
||||||
|
if (permissions.data_collection?.includes("technicalAndInteraction"))
|
||||||
|
{
|
||||||
|
const isGranted: boolean = await browser.permissions.contains({
|
||||||
|
data_collection: ["technicalAndInteraction"]
|
||||||
|
} as Browser.permissions.Permissions);
|
||||||
|
cb(isGranted, !isGranted);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
browser.permissions.onAdded.addListener(listener);
|
||||||
|
browser.permissions.onRemoved.addListener(listener);
|
||||||
|
|
||||||
|
return (): void =>
|
||||||
|
{
|
||||||
|
browser.permissions.onAdded.removeListener(listener);
|
||||||
|
browser.permissions.onRemoved.removeListener(listener);
|
||||||
|
};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
export default analyticsPermission;
|
||||||
|
|
||||||
|
const allowAnalytics = storage.defineItem<boolean>("local:analytics", {
|
||||||
|
fallback: true
|
||||||
|
});
|
||||||
@@ -0,0 +1,30 @@
|
|||||||
|
import { cloudDisabled, collectionCount } from "@/features/collectionStorage";
|
||||||
|
import { settings } from "@/utils/settings";
|
||||||
|
|
||||||
|
export async function getUserProperties(): Promise<UserProperties>
|
||||||
|
{
|
||||||
|
const properties: UserProperties =
|
||||||
|
{
|
||||||
|
cloud_used: await cloudDisabled.getValue() ? "-1" : (await browser.storage.sync.getBytesInUse() / 102400).toString(),
|
||||||
|
collection_count: (await collectionCount.getValue()).toString()
|
||||||
|
};
|
||||||
|
|
||||||
|
for (const key of Object.keys(settings))
|
||||||
|
{
|
||||||
|
const value = await settings[key as keyof typeof settings].getValue();
|
||||||
|
properties[`option_${key}`] = value.valueOf().toString();
|
||||||
|
}
|
||||||
|
|
||||||
|
return properties;
|
||||||
|
}
|
||||||
|
|
||||||
|
export const userId = storage.defineItem("local:userId", {
|
||||||
|
init: () => crypto.randomUUID()
|
||||||
|
});
|
||||||
|
|
||||||
|
export type UserProperties =
|
||||||
|
{
|
||||||
|
collection_count: string;
|
||||||
|
cloud_used: string;
|
||||||
|
[key: `option_${string}`]: string;
|
||||||
|
};
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
export default function track(eventName: string, eventProperties?: Record<string, string>): void
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
analytics.track(eventName, eventProperties);
|
|
||||||
}
|
|
||||||
catch (ex)
|
|
||||||
{
|
|
||||||
console.error("Failed to send analytics event", ex);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
export default function trackError(name: string, error: Error): void
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
analytics.track(name, {
|
|
||||||
name: error.name,
|
|
||||||
message: error.message,
|
|
||||||
stack: error.stack ?? "no_stack"
|
|
||||||
});
|
|
||||||
}
|
|
||||||
catch (ex)
|
|
||||||
{
|
|
||||||
console.error("Failed to send error report", ex);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,35 +0,0 @@
|
|||||||
import { cloudDisabled, collectionCount } from "@/features/collectionStorage";
|
|
||||||
import { settings } from "@/utils/settings";
|
|
||||||
import { WxtStorageItem } from "wxt/storage";
|
|
||||||
|
|
||||||
// @ts-expect-error we don't need to implement a full storage item
|
|
||||||
const userPropertiesStorage: WxtStorageItem<Record<string, string>, any> =
|
|
||||||
{
|
|
||||||
getValue: async (): Promise<UserProperties> =>
|
|
||||||
{
|
|
||||||
console.log("userPropertiesStorage.getValue");
|
|
||||||
const properties: UserProperties =
|
|
||||||
{
|
|
||||||
cloud_used: await cloudDisabled.getValue() ? "-1" : (await browser.storage.sync.getBytesInUse() / 102400).toString(),
|
|
||||||
collection_count: (await collectionCount.getValue()).toString()
|
|
||||||
};
|
|
||||||
|
|
||||||
for (const key of Object.keys(settings))
|
|
||||||
{
|
|
||||||
const value = await settings[key as keyof typeof settings].getValue();
|
|
||||||
properties[`option_${key}`] = value.valueOf().toString();
|
|
||||||
}
|
|
||||||
|
|
||||||
return properties;
|
|
||||||
},
|
|
||||||
setValue: async () => { }
|
|
||||||
};
|
|
||||||
|
|
||||||
export default userPropertiesStorage;
|
|
||||||
|
|
||||||
export type UserProperties =
|
|
||||||
{
|
|
||||||
collection_count: string;
|
|
||||||
cloud_used: string;
|
|
||||||
[key: `option_${string}`]: string;
|
|
||||||
};
|
|
||||||
@@ -5,6 +5,9 @@ export { default as getCollections } from "./utils/getCollections";
|
|||||||
export { default as resoveConflict } from "./utils/resolveConflict";
|
export { default as resoveConflict } from "./utils/resolveConflict";
|
||||||
export { default as saveCollections } from "./utils/saveCollections";
|
export { default as saveCollections } from "./utils/saveCollections";
|
||||||
export { default as setCloudStorage } from "./utils/setCloudStorage";
|
export { default as setCloudStorage } from "./utils/setCloudStorage";
|
||||||
|
export { default as clearGraphicsStorage } from "./utils/clearGraphics";
|
||||||
|
|
||||||
|
export { default as thumbnailCaptureEnabled } from "./utils/thumbnailCaptureEnabled";
|
||||||
|
|
||||||
export const collectionCount = collectionStorage.count;
|
export const collectionCount = collectionStorage.count;
|
||||||
export const graphics = collectionStorage.graphics;
|
export const graphics = collectionStorage.graphics;
|
||||||
|
|||||||
@@ -0,0 +1,6 @@
|
|||||||
|
import { collectionStorage } from "./collectionStorage";
|
||||||
|
|
||||||
|
export default async function clearGraphicsStorage(): Promise<void>
|
||||||
|
{
|
||||||
|
await collectionStorage.graphics.removeValue();
|
||||||
|
}
|
||||||
@@ -14,7 +14,7 @@ export default async function getCollectionsFromCloud(): Promise<CollectionItem[
|
|||||||
const chunks: Record<string, string> =
|
const chunks: Record<string, string> =
|
||||||
await browser.storage.sync.get(getChunkKeys(0, chunkCount)) as Record<string, string>;
|
await browser.storage.sync.get(getChunkKeys(0, chunkCount)) as Record<string, string>;
|
||||||
|
|
||||||
const data: string = decompress(Object.values(chunks).join(), { inputEncoding: "Base64" });
|
const data: string = decompress(Object.values(chunks).join(""), { inputEncoding: "Base64" });
|
||||||
|
|
||||||
return parseCollections(data);
|
return parseCollections(data);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ function parseCollection(data: string): CollectionItem
|
|||||||
return {
|
return {
|
||||||
type: "collection",
|
type: "collection",
|
||||||
timestamp: parseInt(data.match(/(?<=^c)\d+/)!.toString()),
|
timestamp: parseInt(data.match(/(?<=^c)\d+/)!.toString()),
|
||||||
color: data.match(/(?<=^c\d+\/)[a-z]+/)?.toString() as chrome.tabGroups.ColorEnum,
|
color: data.match(/(?<=^c\d+\/)[a-z]+/)?.toString() as `${Browser.tabGroups.Color}`,
|
||||||
title: data.match(/(?<=^c[\da-z/]*\|).*/)?.toString(),
|
title: data.match(/(?<=^c[\da-z/]*\|).*/)?.toString(),
|
||||||
items: []
|
items: []
|
||||||
};
|
};
|
||||||
@@ -64,7 +64,7 @@ function parseGroup(data: string): GroupItem
|
|||||||
return {
|
return {
|
||||||
type: "group",
|
type: "group",
|
||||||
pinned: false,
|
pinned: false,
|
||||||
color: data.match(/(?<=^\tg\/)[a-z]+/)?.toString() as chrome.tabGroups.ColorEnum,
|
color: data.match(/(?<=^\tg\/)[a-z]+/)?.toString() as `${Browser.tabGroups.Color}`,
|
||||||
title: data.match(/(?<=^\tg\/[a-z]+\|).*$/)?.toString(),
|
title: data.match(/(?<=^\tg\/[a-z]+\|).*$/)?.toString(),
|
||||||
items: []
|
items: []
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
import { trackError } from "@/features/analytics";
|
|
||||||
import { CollectionItem, GraphicsStorage } from "@/models/CollectionModels";
|
import { CollectionItem, GraphicsStorage } from "@/models/CollectionModels";
|
||||||
import getLogger from "@/utils/getLogger";
|
import getLogger from "@/utils/getLogger";
|
||||||
import sendNotification from "@/utils/sendNotification";
|
|
||||||
import { collectionStorage } from "./collectionStorage";
|
import { collectionStorage } from "./collectionStorage";
|
||||||
import saveCollectionsToCloud from "./saveCollectionsToCloud";
|
import saveCollectionsToCloud from "./saveCollectionsToCloud";
|
||||||
import saveCollectionsToLocal from "./saveCollectionsToLocal";
|
import saveCollectionsToLocal from "./saveCollectionsToLocal";
|
||||||
@@ -19,29 +17,8 @@ export default async function saveCollections(
|
|||||||
await saveCollectionsToLocal(collections, timestamp);
|
await saveCollectionsToLocal(collections, timestamp);
|
||||||
|
|
||||||
if (updateCloud && await collectionStorage.disableCloud.getValue() !== true)
|
if (updateCloud && await collectionStorage.disableCloud.getValue() !== true)
|
||||||
try
|
await saveCollectionsToCloud(collections, timestamp);
|
||||||
{
|
|
||||||
await saveCollectionsToCloud(collections, timestamp);
|
|
||||||
}
|
|
||||||
catch (ex)
|
|
||||||
{
|
|
||||||
logger("Failed to save cloud storage");
|
|
||||||
console.error(ex);
|
|
||||||
trackError("cloud_save_error", ex as Error);
|
|
||||||
|
|
||||||
if ((ex as Error).message.includes("MAX_WRITE_OPERATIONS_PER_MINUTE"))
|
|
||||||
await sendNotification({
|
|
||||||
title: i18n.t("notifications.error_quota_exceeded.title"),
|
|
||||||
message: i18n.t("notifications.error_quota_exceeded.message"),
|
|
||||||
icon: "/notification_icons/cloud_error.png"
|
|
||||||
});
|
|
||||||
else
|
|
||||||
await sendNotification({
|
|
||||||
title: i18n.t("notifications.error_storage_full.title"),
|
|
||||||
message: i18n.t("notifications.error_storage_full.message"),
|
|
||||||
icon: "/notification_icons/cloud_error.png"
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
await updateGraphics(collections, graphicsCache);
|
await updateGraphics(collections, graphicsCache);
|
||||||
|
logger("Save complete");
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,46 +1,75 @@
|
|||||||
|
import { trackError } from "@/features/analytics";
|
||||||
import { CollectionItem } from "@/models/CollectionModels";
|
import { CollectionItem } from "@/models/CollectionModels";
|
||||||
|
import getLogger from "@/utils/getLogger";
|
||||||
|
import sendNotification from "@/utils/sendNotification";
|
||||||
import { compress } from "lzutf8";
|
import { compress } from "lzutf8";
|
||||||
import { WxtStorageItem } from "wxt/storage";
|
|
||||||
import { collectionStorage } from "./collectionStorage";
|
import { collectionStorage } from "./collectionStorage";
|
||||||
import getChunkKeys from "./getChunkKeys";
|
import getChunkKeys from "./getChunkKeys";
|
||||||
import serializeCollections from "./serializeCollections";
|
import serializeCollections from "./serializeCollections";
|
||||||
|
|
||||||
|
const logger = getLogger("saveCollectionsToCloud");
|
||||||
|
|
||||||
export default async function saveCollectionsToCloud(collections: CollectionItem[], timestamp: number): Promise<void>
|
export default async function saveCollectionsToCloud(collections: CollectionItem[], timestamp: number): Promise<void>
|
||||||
{
|
{
|
||||||
if (!collections || collections.length < 1)
|
try
|
||||||
{
|
{
|
||||||
await collectionStorage.chunkCount.setValue(0);
|
if (!collections || collections.length < 1)
|
||||||
await browser.storage.sync.remove(getChunkKeys());
|
{
|
||||||
return;
|
await browser.storage.sync.set({
|
||||||
|
[getStorageKey(collectionStorage.chunkCount)]: 0,
|
||||||
|
[getStorageKey(collectionStorage.syncLastUpdated)]: timestamp
|
||||||
|
});
|
||||||
|
await browser.storage.sync.remove(getChunkKeys());
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const data: string = compress(serializeCollections(collections), { outputEncoding: "Base64" });
|
||||||
|
const chunks: string[] = splitIntoChunks(data);
|
||||||
|
|
||||||
|
if (chunks.length > collectionStorage.maxChunkCount)
|
||||||
|
throw new Error("Data is too large to be stored in sync storage.");
|
||||||
|
|
||||||
|
// Since there's a limit for cloud write operations, we need to write all chunks in one go.
|
||||||
|
const newRecords: Record<string, string | number> =
|
||||||
|
{
|
||||||
|
[getStorageKey(collectionStorage.chunkCount)]: chunks.length,
|
||||||
|
[getStorageKey(collectionStorage.syncLastUpdated)]: timestamp
|
||||||
|
};
|
||||||
|
|
||||||
|
for (let i = 0; i < chunks.length; i++)
|
||||||
|
newRecords[`c${i}`] = chunks[i];
|
||||||
|
|
||||||
|
await browser.storage.sync.set(newRecords);
|
||||||
|
|
||||||
|
if (chunks.length < collectionStorage.maxChunkCount)
|
||||||
|
await browser.storage.sync.remove(getChunkKeys(chunks.length));
|
||||||
}
|
}
|
||||||
|
catch (ex)
|
||||||
const data: string = compress(serializeCollections(collections), { outputEncoding: "Base64" });
|
|
||||||
const chunks: string[] = splitIntoChunks(data);
|
|
||||||
|
|
||||||
if (chunks.length > collectionStorage.maxChunkCount)
|
|
||||||
throw new Error("Data is too large to be stored in sync storage.");
|
|
||||||
|
|
||||||
// Since there's a limit for cloud write operations, we need to write all chunks in one go.
|
|
||||||
const newRecords: Record<string, string | number> =
|
|
||||||
{
|
{
|
||||||
[getStorageKey(collectionStorage.chunkCount)]: chunks.length,
|
logger("Failed to save cloud storage");
|
||||||
[getStorageKey(collectionStorage.syncLastUpdated)]: timestamp
|
console.error(ex);
|
||||||
};
|
trackError("cloud_save_error", ex as Error);
|
||||||
|
|
||||||
for (let i = 0; i < chunks.length; i++)
|
if ((ex as Error).message.includes("MAX_WRITE_OPERATIONS_PER_MINUTE"))
|
||||||
newRecords[`c${i}`] = chunks[i];
|
await sendNotification({
|
||||||
|
title: i18n.t("notifications.error_quota_exceeded.title"),
|
||||||
await browser.storage.sync.set(newRecords);
|
message: i18n.t("notifications.error_quota_exceeded.message"),
|
||||||
|
icon: "/notification_icons/cloud_error.png"
|
||||||
if (chunks.length < collectionStorage.maxChunkCount)
|
});
|
||||||
await browser.storage.sync.remove(getChunkKeys(chunks.length));
|
else
|
||||||
|
await sendNotification({
|
||||||
|
title: i18n.t("notifications.error_storage_full.title"),
|
||||||
|
message: i18n.t("notifications.error_storage_full.message"),
|
||||||
|
icon: "/notification_icons/cloud_error.png"
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function splitIntoChunks(data: string): string[]
|
function splitIntoChunks(data: string): string[]
|
||||||
{
|
{
|
||||||
// QUOTA_BYTES_PER_ITEM includes length of key name, length of content and 2 more bytes (for unknown reason).
|
// QUOTA_BYTES_PER_ITEM includes length of key name, length of content and 2 more bytes (for unknown reason).
|
||||||
const chunkKey: string = getChunkKeys(collectionStorage.maxChunkCount - 1)[0];
|
const chunkKey: string = getChunkKeys(collectionStorage.maxChunkCount - 1)[0];
|
||||||
const chunkSize = (chrome.storage.sync.QUOTA_BYTES_PER_ITEM ?? 8192) - chunkKey.length - 2;
|
const chunkSize = (browser.storage.sync.QUOTA_BYTES_PER_ITEM ?? 8192) - chunkKey.length - 2;
|
||||||
const chunks: string[] = [];
|
const chunks: string[] = [];
|
||||||
|
|
||||||
for (let i = 0; i < data.length; i += chunkSize)
|
for (let i = 0; i < data.length; i += chunkSize)
|
||||||
|
|||||||
@@ -0,0 +1,49 @@
|
|||||||
|
import { Unwatch, WatchCallback } from "wxt/utils/storage";
|
||||||
|
|
||||||
|
const thumbnailCaptureEnabled: Pick<WxtStorageItem<boolean, Record<string, unknown>>, "getValue" | "watch" | "setValue"> =
|
||||||
|
{
|
||||||
|
getValue: async (): Promise<boolean> =>
|
||||||
|
await browser.permissions.contains({ permissions: ["scripting"], origins: ["<all_urls>"] }),
|
||||||
|
|
||||||
|
watch: (cb: WatchCallback<boolean>): Unwatch =>
|
||||||
|
{
|
||||||
|
const listener = async (permissions: Browser.permissions.Permissions): Promise<void> =>
|
||||||
|
{
|
||||||
|
if (permissions.permissions?.includes("scripting") || permissions.origins?.includes("<all_urls>"))
|
||||||
|
{
|
||||||
|
const isGranted: boolean = await browser.permissions.contains({ permissions: ["scripting"], origins: ["<all_urls>"] });
|
||||||
|
console.log("thumbnailCaptureEnabled changed", isGranted);
|
||||||
|
cb(isGranted, !isGranted);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
browser.permissions.onAdded.addListener(listener);
|
||||||
|
browser.permissions.onRemoved.addListener(listener);
|
||||||
|
|
||||||
|
return (): void =>
|
||||||
|
{
|
||||||
|
browser.permissions.onAdded.removeListener(listener);
|
||||||
|
browser.permissions.onRemoved.removeListener(listener);
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
|
setValue: async (value: boolean): Promise<void> =>
|
||||||
|
{
|
||||||
|
let result: boolean = false;
|
||||||
|
|
||||||
|
if (value)
|
||||||
|
result = await browser.permissions.request({ permissions: ["scripting"], origins: ["<all_urls>"] });
|
||||||
|
else
|
||||||
|
{
|
||||||
|
result = await browser.permissions.remove({ origins: ["<all_urls>"] });
|
||||||
|
|
||||||
|
if (import.meta.env.DEV)
|
||||||
|
await browser.permissions.request({ origins: ["http://localhost/*"] });
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!result)
|
||||||
|
throw new Error("Permission request was denied");
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
export default thumbnailCaptureEnabled;
|
||||||
@@ -0,0 +1,132 @@
|
|||||||
|
import { githubLinks } from "@/data/links";
|
||||||
|
import { analyticsPermission } from "@/features/analytics";
|
||||||
|
import { thumbnailCaptureEnabled } from "@/features/collectionStorage";
|
||||||
|
import extLink from "@/utils/extLink";
|
||||||
|
import * as fui from "@fluentui/react-components";
|
||||||
|
import { Unwatch } from "wxt/utils/storage";
|
||||||
|
import { reviewSettings } from "../utils/setSettingsReviewNeeded";
|
||||||
|
import { settingsForReview } from "../utils/showSettingsReviewDialog";
|
||||||
|
|
||||||
|
export default function SettingsReviewDialog(): React.ReactElement
|
||||||
|
{
|
||||||
|
const [allowAnalytics, setAllowAnalytics] = useState<boolean | null>(null);
|
||||||
|
const [captureThumbnails, setCaptureThumbnails] = useState<boolean | null>(null);
|
||||||
|
const [needsReview, setNeedsReview] = useState<string[]>([]);
|
||||||
|
const cls = useStyles();
|
||||||
|
|
||||||
|
useEffect(() =>
|
||||||
|
{
|
||||||
|
analyticsPermission.getValue().then(setAllowAnalytics);
|
||||||
|
thumbnailCaptureEnabled.getValue().then(setCaptureThumbnails);
|
||||||
|
settingsForReview.getValue().then(setNeedsReview);
|
||||||
|
|
||||||
|
const unwatchAnalytics: Unwatch = analyticsPermission.watch(setAllowAnalytics);
|
||||||
|
const unwatchThumbnails: Unwatch = thumbnailCaptureEnabled.watch(setCaptureThumbnails);
|
||||||
|
|
||||||
|
return () =>
|
||||||
|
{
|
||||||
|
unwatchAnalytics();
|
||||||
|
unwatchThumbnails();
|
||||||
|
};
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const updateAnalytics = (enabled: boolean): void =>
|
||||||
|
{
|
||||||
|
setAllowAnalytics(null);
|
||||||
|
analyticsPermission.setValue(enabled)
|
||||||
|
.catch(() => setAllowAnalytics(!enabled));
|
||||||
|
};
|
||||||
|
|
||||||
|
const updateThumbnails = (enabled: boolean): void =>
|
||||||
|
{
|
||||||
|
setCaptureThumbnails(null);
|
||||||
|
thumbnailCaptureEnabled.setValue(enabled)
|
||||||
|
.catch(() => setCaptureThumbnails(!enabled));
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<fui.DialogSurface>
|
||||||
|
<fui.DialogBody>
|
||||||
|
<fui.DialogTitle>{ i18n.t("features.settingsReview.title") }</fui.DialogTitle>
|
||||||
|
<fui.DialogContent className={ cls.content }>
|
||||||
|
{ needsReview.includes(reviewSettings.THUMBNAILS) &&
|
||||||
|
<div className={ cls.section }>
|
||||||
|
<fui.Switch
|
||||||
|
label={ i18n.t("options_page.storage.thumbnail_capture") }
|
||||||
|
checked={ captureThumbnails ?? true }
|
||||||
|
disabled={ captureThumbnails === null }
|
||||||
|
onChange={ (_, e) => updateThumbnails(e.checked as boolean) } />
|
||||||
|
|
||||||
|
<fui.MessageBar layout="multiline">
|
||||||
|
<fui.MessageBarBody className={ cls.msgBarBody }>
|
||||||
|
<fui.MessageBarTitle>
|
||||||
|
{ i18n.t("options_page.storage.thumbnail_capture_notice1") }
|
||||||
|
</fui.MessageBarTitle>
|
||||||
|
<fui.Text as="p">
|
||||||
|
{ i18n.t("options_page.storage.thumbnail_capture_notice2") }
|
||||||
|
</fui.Text>
|
||||||
|
</fui.MessageBarBody>
|
||||||
|
</fui.MessageBar>
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
{ needsReview.includes(reviewSettings.ANALYTICS) &&
|
||||||
|
<div className={ cls.section }>
|
||||||
|
<fui.Switch
|
||||||
|
label={ i18n.t("options_page.general.options.allow_analytics") }
|
||||||
|
checked={ allowAnalytics ?? true }
|
||||||
|
disabled={ allowAnalytics === null }
|
||||||
|
onChange={ (_, e) => updateAnalytics(e.checked as boolean) } />
|
||||||
|
|
||||||
|
<fui.MessageBar layout="multiline">
|
||||||
|
<fui.MessageBarBody className={ cls.msgBarBody }>
|
||||||
|
<fui.MessageBarTitle>
|
||||||
|
{ i18n.t("features.settingsReview.analytics.title") }
|
||||||
|
</fui.MessageBarTitle>
|
||||||
|
<fui.Text as="p">
|
||||||
|
{ i18n.t("features.settingsReview.analytics.p1") }
|
||||||
|
</fui.Text>
|
||||||
|
<fui.Text as="p" weight="semibold">
|
||||||
|
{ i18n.t("features.settingsReview.analytics.p2") }
|
||||||
|
</fui.Text>
|
||||||
|
<fui.Text as="p">
|
||||||
|
{ i18n.t("features.settingsReview.analytics.p3_text") } <fui.Link { ...extLink(githubLinks.privacy) }>{ i18n.t("features.settingsReview.analytics.p3_link") }</fui.Link>.
|
||||||
|
</fui.Text>
|
||||||
|
</fui.MessageBarBody>
|
||||||
|
</fui.MessageBar>
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
</fui.DialogContent>
|
||||||
|
<fui.DialogActions>
|
||||||
|
<fui.Button onClick={ () => browser.runtime.openOptionsPage() }>
|
||||||
|
{ i18n.t("features.settingsReview.action") }
|
||||||
|
</fui.Button>
|
||||||
|
<fui.DialogTrigger>
|
||||||
|
<fui.Button appearance="primary">{ i18n.t("common.actions.save") }</fui.Button>
|
||||||
|
</fui.DialogTrigger>
|
||||||
|
</fui.DialogActions>
|
||||||
|
</fui.DialogBody>
|
||||||
|
</fui.DialogSurface>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
const useStyles = fui.makeStyles({
|
||||||
|
content:
|
||||||
|
{
|
||||||
|
display: "flex",
|
||||||
|
flexFlow: "column",
|
||||||
|
gap: fui.tokens.spacingVerticalL
|
||||||
|
},
|
||||||
|
section:
|
||||||
|
{
|
||||||
|
display: "flex",
|
||||||
|
flexFlow: "column",
|
||||||
|
gap: fui.tokens.spacingVerticalXS
|
||||||
|
},
|
||||||
|
msgBarBody:
|
||||||
|
{
|
||||||
|
display: "flex",
|
||||||
|
flexFlow: "column",
|
||||||
|
gap: fui.tokens.spacingVerticalXS,
|
||||||
|
marginBottom: fui.tokens.spacingVerticalXS
|
||||||
|
}
|
||||||
|
});
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
import { DialogContextType } from "@/contexts/DialogProvider";
|
||||||
|
import SettingsReviewDialog from "../components/SettingsReviewDialog";
|
||||||
|
import { settingsForReview } from "../utils/showSettingsReviewDialog";
|
||||||
|
|
||||||
|
export default function useSettingsReviewDialog(dialog: DialogContextType): Promise<void>
|
||||||
|
{
|
||||||
|
return new Promise<void>(res =>
|
||||||
|
{
|
||||||
|
settingsForReview.getValue().then(needsReview =>
|
||||||
|
{
|
||||||
|
if (needsReview.length > 0)
|
||||||
|
dialog.pushCustom(
|
||||||
|
<SettingsReviewDialog />,
|
||||||
|
undefined,
|
||||||
|
() =>
|
||||||
|
{
|
||||||
|
settingsForReview.removeValue();
|
||||||
|
res();
|
||||||
|
}
|
||||||
|
);
|
||||||
|
else
|
||||||
|
res();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
export { default as useSettingsReviewDialog } from "./hooks/useSettingsReviewDialog";
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
export { default as setSettingsReviewNeeded } from "./setSettingsReviewNeeded";
|
||||||
@@ -0,0 +1,65 @@
|
|||||||
|
import { analyticsPermission } from "@/features/analytics";
|
||||||
|
import { settingsForReview } from "./showSettingsReviewDialog";
|
||||||
|
|
||||||
|
export default async function setSettingsReviewNeeded(installReason: `${Browser.runtime.OnInstalledReason}`, previousVersion?: string): Promise<void>
|
||||||
|
{
|
||||||
|
const needsReview: string[] = await settingsForReview.getValue();
|
||||||
|
|
||||||
|
if (!needsReview.includes(reviewSettings.ANALYTICS) && await checkAnalyticsReviewNeeded(installReason, previousVersion))
|
||||||
|
needsReview.push(reviewSettings.ANALYTICS);
|
||||||
|
|
||||||
|
if (!needsReview.includes(reviewSettings.THUMBNAILS) && await checkThumbnailsReviewNeeded(installReason, previousVersion))
|
||||||
|
needsReview.push(reviewSettings.THUMBNAILS);
|
||||||
|
|
||||||
|
console.log("Settings needing review:", needsReview);
|
||||||
|
// Add more settings here as needed
|
||||||
|
|
||||||
|
if (needsReview.length > 0)
|
||||||
|
await settingsForReview.setValue(needsReview);
|
||||||
|
}
|
||||||
|
|
||||||
|
export const reviewSettings =
|
||||||
|
{
|
||||||
|
ANALYTICS: "analytics",
|
||||||
|
THUMBNAILS: "thumbnails"
|
||||||
|
};
|
||||||
|
|
||||||
|
async function checkAnalyticsReviewNeeded(installReason: `${Browser.runtime.OnInstalledReason}`, previousVersion?: string): Promise<boolean>
|
||||||
|
{
|
||||||
|
if (installReason === "install")
|
||||||
|
return !await analyticsPermission.getValue();
|
||||||
|
|
||||||
|
if (installReason === "update")
|
||||||
|
{
|
||||||
|
const [major, minor, patch] = (previousVersion ?? "0.0.0").split(".").map(parseInt);
|
||||||
|
const cumulative: number = major * 10000 + minor * 100 + patch;
|
||||||
|
|
||||||
|
if (cumulative < 30100) // < 3.1.0
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (import.meta.env.DEV)
|
||||||
|
return true;
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
async function checkThumbnailsReviewNeeded(installReason: `${Browser.runtime.OnInstalledReason}`, previousVersion?: string): Promise<boolean>
|
||||||
|
{
|
||||||
|
if (installReason === "install")
|
||||||
|
return true;
|
||||||
|
|
||||||
|
if (installReason === "update")
|
||||||
|
{
|
||||||
|
const [major, minor, patch] = (previousVersion ?? "0.0.0").split(".").map(parseInt);
|
||||||
|
const cumulative: number = major * 10000 + minor * 100 + patch;
|
||||||
|
|
||||||
|
if (cumulative < 30100) // < 3.1.0
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (import.meta.env.DEV)
|
||||||
|
return true;
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
export const settingsForReview = storage.defineItem<string[]>(
|
||||||
|
"local:settingsForReview",
|
||||||
|
{
|
||||||
|
fallback: []
|
||||||
|
}
|
||||||
|
);
|
||||||
@@ -1,17 +1,25 @@
|
|||||||
import { useDialog } from "@/contexts/DialogProvider";
|
import { DialogContextType } from "@/contexts/DialogProvider";
|
||||||
import WelcomeDialog from "../components/WelcomeDialog";
|
import WelcomeDialog from "../components/WelcomeDialog";
|
||||||
import { showWelcomeDialog } from "../utils/showWelcomeDialog";
|
import { showWelcomeDialog } from "../utils/showWelcomeDialog";
|
||||||
|
|
||||||
export default function useWelcomeDialog(): void
|
export default function useWelcomeDialog(dialog: DialogContextType): Promise<void>
|
||||||
{
|
{
|
||||||
const dialog = useDialog();
|
return new Promise<void>(res =>
|
||||||
|
|
||||||
useEffect(() =>
|
|
||||||
{
|
{
|
||||||
showWelcomeDialog.getValue().then(showWelcome =>
|
showWelcomeDialog.getValue().then(showWelcome =>
|
||||||
{
|
{
|
||||||
if (showWelcome || import.meta.env.DEV)
|
if (showWelcome || import.meta.env.DEV)
|
||||||
dialog.pushCustom(<WelcomeDialog />, undefined, () => showWelcomeDialog.removeValue());
|
dialog.pushCustom(
|
||||||
|
<WelcomeDialog />,
|
||||||
|
undefined,
|
||||||
|
() =>
|
||||||
|
{
|
||||||
|
showWelcomeDialog.removeValue();
|
||||||
|
res();
|
||||||
|
}
|
||||||
|
);
|
||||||
|
else
|
||||||
|
res();
|
||||||
});
|
});
|
||||||
}, []);
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,18 @@
|
|||||||
|
import { DialogContextType, useDialog } from "@/contexts/DialogProvider";
|
||||||
|
|
||||||
|
export default function useDialogTrain(...dialogs: ((dialog: DialogContextType) => Promise<void>)[]): void
|
||||||
|
{
|
||||||
|
const dialog = useDialog();
|
||||||
|
|
||||||
|
useEffect(() =>
|
||||||
|
{
|
||||||
|
(async () =>
|
||||||
|
{
|
||||||
|
for (const item of dialogs)
|
||||||
|
{
|
||||||
|
await item(dialog);
|
||||||
|
await new Promise(res => setTimeout(res, 250));
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
}, []);
|
||||||
|
}
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
import { makeStyles, tokens } from "@fluentui/react-components";
|
import { makeStyles, tokens } from "@fluentui/react-components";
|
||||||
|
|
||||||
export const useGroupColors: () => Record<chrome.tabGroups.ColorEnum, string> = makeStyles({
|
export const useGroupColors: () => Record<`${Browser.tabGroups.Color}`, string> = makeStyles({
|
||||||
blue:
|
blue:
|
||||||
{
|
{
|
||||||
"--border": tokens.colorPaletteBlueBorderActive,
|
"--border": tokens.colorPaletteBlueBorderActive,
|
||||||
|
|||||||
@@ -14,8 +14,8 @@ export default function useStorageInfo(): StorageInfoHook
|
|||||||
|
|
||||||
return {
|
return {
|
||||||
bytesInUse,
|
bytesInUse,
|
||||||
storageQuota: chrome.storage.sync.QUOTA_BYTES ?? 102400,
|
storageQuota: browser.storage.sync.QUOTA_BYTES ?? 102400,
|
||||||
usedStorageRatio: bytesInUse / (chrome.storage.sync.QUOTA_BYTES ?? 102400)
|
usedStorageRatio: bytesInUse / (browser.storage.sync.QUOTA_BYTES ?? 102400)
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -36,6 +36,15 @@ features:
|
|||||||
text3: "Visit our dev blog to learn more about this update and all of its features!"
|
text3: "Visit our dev blog to learn more about this update and all of its features!"
|
||||||
actions:
|
actions:
|
||||||
visit_blog: "Read dev blog"
|
visit_blog: "Read dev blog"
|
||||||
|
settingsReview:
|
||||||
|
title: "Review your settings"
|
||||||
|
action: "All settings"
|
||||||
|
analytics:
|
||||||
|
title: "These statistics will help us improve the extension"
|
||||||
|
p1: "We only collect usage statistics (number of collections, used features, etc.)"
|
||||||
|
p2: "We do not collect any of your data!"
|
||||||
|
p3_text: "See the full list of what we collect"
|
||||||
|
p3_link: "here"
|
||||||
|
|
||||||
notifications:
|
notifications:
|
||||||
tabs_saved:
|
tabs_saved:
|
||||||
@@ -73,7 +82,9 @@ options_page:
|
|||||||
show_delete_prompt: "Ask for confirmation when deleting an item"
|
show_delete_prompt: "Ask for confirmation when deleting an item"
|
||||||
show_badge: "Show counter badge"
|
show_badge: "Show counter badge"
|
||||||
show_notification: "Show notification when saving tabs using context menu"
|
show_notification: "Show notification when saving tabs using context menu"
|
||||||
|
show_partial_save_notification: "Show notification when some tabs couldn't be saved"
|
||||||
unload_tabs: "Do not load tabs after opening"
|
unload_tabs: "Do not load tabs after opening"
|
||||||
|
allow_analytics: "Allow collection of anonymous statistics"
|
||||||
list_locations:
|
list_locations:
|
||||||
title: "Open collection list in:"
|
title: "Open collection list in:"
|
||||||
options:
|
options:
|
||||||
@@ -121,6 +132,13 @@ options_page:
|
|||||||
disable_prompt:
|
disable_prompt:
|
||||||
text: "This action will disable collection synchronization between your devices. Extension's settings will still be synchronized."
|
text: "This action will disable collection synchronization between your devices. Extension's settings will still be synchronized."
|
||||||
action: "Disable and reload the extension"
|
action: "Disable and reload the extension"
|
||||||
|
thumbnail_capture: "Capture thumbnails and icons for saved tabs"
|
||||||
|
thumbnail_capture_notice1: "Requires permission to access content on visited websites"
|
||||||
|
thumbnail_capture_notice2: "Disabling this feature may improve performance on large collections"
|
||||||
|
clear_thumbnails:
|
||||||
|
action: "Clear saved thumbnails"
|
||||||
|
title: "Delete all saved thumbnails?"
|
||||||
|
prompt: "This action will remove all saved thumbnails, previews and icons for your saved tabs. This action cannot be undone."
|
||||||
about:
|
about:
|
||||||
title: "About"
|
title: "About"
|
||||||
developed_by: "Developed by Eugene Fox"
|
developed_by: "Developed by Eugene Fox"
|
||||||
@@ -133,6 +151,7 @@ options_page:
|
|||||||
website: "My website"
|
website: "My website"
|
||||||
source: "Source code"
|
source: "Source code"
|
||||||
changelog: "Changelog"
|
changelog: "Changelog"
|
||||||
|
privacy: "Privacy policy"
|
||||||
|
|
||||||
collections:
|
collections:
|
||||||
empty: "This collection is empty"
|
empty: "This collection is empty"
|
||||||
|
|||||||
@@ -36,6 +36,15 @@ features:
|
|||||||
text3: "¡Visita nuestro blog de desarrollo para aprender más sobre esta actualización y todas sus características!"
|
text3: "¡Visita nuestro blog de desarrollo para aprender más sobre esta actualización y todas sus características!"
|
||||||
actions:
|
actions:
|
||||||
visit_blog: "Leer el blog de desarrollo"
|
visit_blog: "Leer el blog de desarrollo"
|
||||||
|
settingsReview:
|
||||||
|
title: "Revisa tus ajustes"
|
||||||
|
action: "Todos los ajustes"
|
||||||
|
analytics:
|
||||||
|
title: "Estas estadísticas nos ayudarán a mejorar la extensión"
|
||||||
|
p1: "Solo recopilamos estadísticas de uso (número de colecciones, funciones utilizadas, etc.)"
|
||||||
|
p2: "¡No recopilamos ninguno de tus datos!"
|
||||||
|
p3_text: "Ver la lista completa de lo que recopilamos"
|
||||||
|
p3_link: "aquí"
|
||||||
|
|
||||||
notifications:
|
notifications:
|
||||||
tabs_saved:
|
tabs_saved:
|
||||||
@@ -73,7 +82,9 @@ options_page:
|
|||||||
show_delete_prompt: "Pedir confirmación al eliminar un elemento"
|
show_delete_prompt: "Pedir confirmación al eliminar un elemento"
|
||||||
show_badge: "Mostrar insignia de contador"
|
show_badge: "Mostrar insignia de contador"
|
||||||
show_notification: "Mostrar notificación al guardar pestañas usando el menú contextual"
|
show_notification: "Mostrar notificación al guardar pestañas usando el menú contextual"
|
||||||
|
show_partial_save_notification: "Mostrar notificación cuando algunas pestañas no se pudieron guardar"
|
||||||
unload_tabs: "No cargar pestañas después de abrir"
|
unload_tabs: "No cargar pestañas después de abrir"
|
||||||
|
allow_analytics: "Permitir la recopilación de estadísticas anónimas"
|
||||||
list_locations:
|
list_locations:
|
||||||
title: "Abrir lista de colecciones en:"
|
title: "Abrir lista de colecciones en:"
|
||||||
options:
|
options:
|
||||||
@@ -121,6 +132,13 @@ options_page:
|
|||||||
disable_prompt:
|
disable_prompt:
|
||||||
text: "Esta acción deshabilitará la sincronización de colecciones entre tus dispositivos. La configuración de la extensión seguirá sincronizándose."
|
text: "Esta acción deshabilitará la sincronización de colecciones entre tus dispositivos. La configuración de la extensión seguirá sincronizándose."
|
||||||
action: "Deshabilitar y recargar la extensión"
|
action: "Deshabilitar y recargar la extensión"
|
||||||
|
thumbnail_capture: "Capturar miniaturas e íconos para las pestañas guardadas"
|
||||||
|
thumbnail_capture_notice1: "Requiere permiso para acceder al contenido de los sitios web visitados"
|
||||||
|
thumbnail_capture_notice2: "Deshabilitar esta función puede mejorar el rendimiento en colecciones grandes"
|
||||||
|
clear_thumbnails:
|
||||||
|
action: "Eliminar miniaturas guardadas"
|
||||||
|
title: "¿Eliminar todas las miniaturas guardadas?"
|
||||||
|
prompt: "Esta acción eliminará todas las miniaturas, vistas previas e íconos guardados para tus pestañas guardadas. Esta acción no se puede deshacer."
|
||||||
about:
|
about:
|
||||||
title: "Acerca de"
|
title: "Acerca de"
|
||||||
developed_by: "Desarrollado por Eugene Fox"
|
developed_by: "Desarrollado por Eugene Fox"
|
||||||
@@ -133,6 +151,7 @@ options_page:
|
|||||||
website: "Mi sitio web"
|
website: "Mi sitio web"
|
||||||
source: "Código fuente"
|
source: "Código fuente"
|
||||||
changelog: "Registro de cambios"
|
changelog: "Registro de cambios"
|
||||||
|
privacy: "Política de privacidad"
|
||||||
|
|
||||||
collections:
|
collections:
|
||||||
empty: "Esta colección está vacía"
|
empty: "Esta colección está vacía"
|
||||||
|
|||||||
@@ -36,6 +36,15 @@ features:
|
|||||||
text3: "Visita il nostro blog per saperne di più su questo aggiornamento e tutte le sue funzionalità!"
|
text3: "Visita il nostro blog per saperne di più su questo aggiornamento e tutte le sue funzionalità!"
|
||||||
actions:
|
actions:
|
||||||
visit_blog: "Leggi il blog degli sviluppatori"
|
visit_blog: "Leggi il blog degli sviluppatori"
|
||||||
|
settingsReview:
|
||||||
|
title: "Rivedi le tue impostazioni"
|
||||||
|
action: "Tutte le impostazioni"
|
||||||
|
analytics:
|
||||||
|
title: "Queste statistiche ci aiuteranno a migliorare l'estensione"
|
||||||
|
p1: "Raccogliamo solo statistiche di utilizzo (numero di collezioni, funzionalità utilizzate, ecc.)"
|
||||||
|
p2: "Non raccogliamo nessuno dei tuoi dati!"
|
||||||
|
p3_text: "Vedi l'elenco completo di ciò che raccogliamo"
|
||||||
|
p3_link: "qui"
|
||||||
|
|
||||||
notifications:
|
notifications:
|
||||||
tabs_saved:
|
tabs_saved:
|
||||||
@@ -73,7 +82,9 @@ options_page:
|
|||||||
show_delete_prompt: "Chiedi conferma quando elimini un elemento"
|
show_delete_prompt: "Chiedi conferma quando elimini un elemento"
|
||||||
show_badge: "Mostra il badge del contatore"
|
show_badge: "Mostra il badge del contatore"
|
||||||
show_notification: "Mostra notifica quando salvi le schede usando il menu contestuale"
|
show_notification: "Mostra notifica quando salvi le schede usando il menu contestuale"
|
||||||
|
show_partial_save_notification: "Mostra notifica quando alcune schede non sono state salvate"
|
||||||
unload_tabs: "Non caricare le schede dopo l'apertura"
|
unload_tabs: "Non caricare le schede dopo l'apertura"
|
||||||
|
allow_analytics: "Consenti la raccolta di statistiche anonime"
|
||||||
list_locations:
|
list_locations:
|
||||||
title: "Apri elenco delle collezioni in:"
|
title: "Apri elenco delle collezioni in:"
|
||||||
options:
|
options:
|
||||||
@@ -121,6 +132,13 @@ options_page:
|
|||||||
disable_prompt:
|
disable_prompt:
|
||||||
text: "Questa azione disabiliterà la sincronizzazione delle collezioni tra i tuoi dispositivi. Le impostazioni dell'estensione saranno comunque sincronizzate."
|
text: "Questa azione disabiliterà la sincronizzazione delle collezioni tra i tuoi dispositivi. Le impostazioni dell'estensione saranno comunque sincronizzate."
|
||||||
action: "Disabilita e ricarica l'estensione"
|
action: "Disabilita e ricarica l'estensione"
|
||||||
|
thumbnail_capture: "Cattura miniature e icone per le schede salvate"
|
||||||
|
thumbnail_capture_notice1: "Richiede il permesso di accedere ai contenuti dei siti web visitati"
|
||||||
|
thumbnail_capture_notice2: "Disabilitare questa funzione può migliorare le prestazioni su collezioni di grandi dimensioni"
|
||||||
|
clear_thumbnails:
|
||||||
|
action: "Elimina miniature salvate"
|
||||||
|
title: "Eliminare tutte le miniature salvate?"
|
||||||
|
prompt: "Questa azione rimuoverà tutte le miniature, anteprime e icone salvate per le tue schede salvate. Questa azione non può essere annullata."
|
||||||
about:
|
about:
|
||||||
title: "Informazioni"
|
title: "Informazioni"
|
||||||
developed_by: "Sviluppato da Eugene Fox"
|
developed_by: "Sviluppato da Eugene Fox"
|
||||||
@@ -133,6 +151,7 @@ options_page:
|
|||||||
website: "Il mio sito web"
|
website: "Il mio sito web"
|
||||||
source: "Codice sorgente"
|
source: "Codice sorgente"
|
||||||
changelog: "Registro delle modifiche"
|
changelog: "Registro delle modifiche"
|
||||||
|
privacy: "Politica sulla riservatezza"
|
||||||
|
|
||||||
collections:
|
collections:
|
||||||
empty: "Questa collezione è vuota"
|
empty: "Questa collezione è vuota"
|
||||||
|
|||||||
@@ -36,6 +36,15 @@ features:
|
|||||||
text3: "Odwiedź blog dewelopera (tylko w języku angielskim), aby dowiedzieć się więcej o tej aktualizacji i wszystkich jej funkcjach!"
|
text3: "Odwiedź blog dewelopera (tylko w języku angielskim), aby dowiedzieć się więcej o tej aktualizacji i wszystkich jej funkcjach!"
|
||||||
actions:
|
actions:
|
||||||
visit_blog: "Czytaj blog"
|
visit_blog: "Czytaj blog"
|
||||||
|
settingsReview:
|
||||||
|
title: "Sprawdź ustawienia"
|
||||||
|
action: "Wszystkie ustawienia"
|
||||||
|
analytics:
|
||||||
|
title: "Ta statystyka pozwoli ulepszać rozszerzenie"
|
||||||
|
p1: "Zbieramy tylko statystyki użycia (liczba kolekcji, używane funkcje itp.)"
|
||||||
|
p2: "Nie zbieramy twoich danych osobowych!"
|
||||||
|
p3_text: "Pełną listę zbieranych danych można zobaczyć"
|
||||||
|
p3_link: "tutaj"
|
||||||
|
|
||||||
notifications:
|
notifications:
|
||||||
tabs_saved:
|
tabs_saved:
|
||||||
@@ -73,7 +82,9 @@ options_page:
|
|||||||
show_delete_prompt: "Pytaj o potwierdzenie przy usuwaniu elementów"
|
show_delete_prompt: "Pytaj o potwierdzenie przy usuwaniu elementów"
|
||||||
show_badge: "Pokaż licznik"
|
show_badge: "Pokaż licznik"
|
||||||
show_notification: "Pokaż powiadomienie przy zapisywaniu przez menu kontekstowe"
|
show_notification: "Pokaż powiadomienie przy zapisywaniu przez menu kontekstowe"
|
||||||
|
show_partial_save_notification: "Pokaż powiadomienie, jeśli niektóre karty nie zostały zapisane"
|
||||||
unload_tabs: "Nie ładuj kart po otwarciu"
|
unload_tabs: "Nie ładuj kart po otwarciu"
|
||||||
|
allow_analytics: "Zezwól na zbieranie anonimowej statystyki"
|
||||||
list_locations:
|
list_locations:
|
||||||
title: "Otwieraj listę kolekcji w:"
|
title: "Otwieraj listę kolekcji w:"
|
||||||
options:
|
options:
|
||||||
@@ -121,6 +132,13 @@ options_page:
|
|||||||
disable_prompt:
|
disable_prompt:
|
||||||
text: "Ta akcja wyłączy synchronizację kolekcji między twoimi urządzeniami. Ustawienia nadal będą przechowywane w chmurze."
|
text: "Ta akcja wyłączy synchronizację kolekcji między twoimi urządzeniami. Ustawienia nadal będą przechowywane w chmurze."
|
||||||
action: "Wyłącz i przeładuj rozszerzenie"
|
action: "Wyłącz i przeładuj rozszerzenie"
|
||||||
|
thumbnail_capture: "Zapisuj podglądy i ikony dla zapisanych kart"
|
||||||
|
thumbnail_capture_notice1: "Wymagany dostęp do zawartości odwiedzanych stron internetowych"
|
||||||
|
thumbnail_capture_notice2: "Wyłączenie tej funkcji może poprawić wydajność przy dużej liczbie zapisanych kart"
|
||||||
|
clear_thumbnails:
|
||||||
|
action: "Usuń zapisane ikony"
|
||||||
|
title: "Usunąć podglądy i ikony?"
|
||||||
|
prompt: "Ta akcja usunie wszystkie podglądy i ikony twoich zapisanych kart. Tej akcji nie można cofnąć."
|
||||||
about:
|
about:
|
||||||
title: "O rozszerzeniu"
|
title: "O rozszerzeniu"
|
||||||
developed_by: "Wywoływacz: Eugeniusz Lis"
|
developed_by: "Wywoływacz: Eugeniusz Lis"
|
||||||
@@ -133,6 +151,7 @@ options_page:
|
|||||||
website: "Moja strona internetowa"
|
website: "Moja strona internetowa"
|
||||||
source: "Kod źródłowy"
|
source: "Kod źródłowy"
|
||||||
changelog: "Lista zmian"
|
changelog: "Lista zmian"
|
||||||
|
privacy: "Polityka prywatności"
|
||||||
|
|
||||||
collections:
|
collections:
|
||||||
empty: "Ta kolekcja jest pusta"
|
empty: "Ta kolekcja jest pusta"
|
||||||
|
|||||||
@@ -36,6 +36,15 @@ features:
|
|||||||
text3: "Visite nosso blog de desenvolvimento para saber mais sobre esta atualização e todos os seus recursos!"
|
text3: "Visite nosso blog de desenvolvimento para saber mais sobre esta atualização e todos os seus recursos!"
|
||||||
actions:
|
actions:
|
||||||
visit_blog: "Ler blog de desenvolvimento"
|
visit_blog: "Ler blog de desenvolvimento"
|
||||||
|
settingsReview:
|
||||||
|
title: "Revise suas configurações"
|
||||||
|
action: "Todas as configurações"
|
||||||
|
analytics:
|
||||||
|
title: "Estas estatísticas nos ajudarão a melhorar a extensão"
|
||||||
|
p1: "Nós coletamos apenas estatísticas de uso (número de coleções, recursos usados, etc.)"
|
||||||
|
p2: "Nós não coletamos nenhum dos seus dados!"
|
||||||
|
p3_text: "Veja a lista completa do que coletamos"
|
||||||
|
p3_link: "aqui"
|
||||||
|
|
||||||
notifications:
|
notifications:
|
||||||
tabs_saved:
|
tabs_saved:
|
||||||
@@ -73,7 +82,9 @@ options_page:
|
|||||||
show_delete_prompt: "Pedir confirmação ao excluir um item"
|
show_delete_prompt: "Pedir confirmação ao excluir um item"
|
||||||
show_badge: "Mostrar contador no ícone"
|
show_badge: "Mostrar contador no ícone"
|
||||||
show_notification: "Mostrar notificação ao salvar abas pelo menu de contexto"
|
show_notification: "Mostrar notificação ao salvar abas pelo menu de contexto"
|
||||||
|
show_partial_save_notification: "Mostrar notificação quando algumas abas não puderam ser salvas"
|
||||||
unload_tabs: "Não carregar abas após abrir"
|
unload_tabs: "Não carregar abas após abrir"
|
||||||
|
allow_analytics: "Permitir coleta de estatísticas anônimas"
|
||||||
list_locations:
|
list_locations:
|
||||||
title: "Abrir lista de coleções em:"
|
title: "Abrir lista de coleções em:"
|
||||||
options:
|
options:
|
||||||
@@ -121,6 +132,13 @@ options_page:
|
|||||||
disable_prompt:
|
disable_prompt:
|
||||||
text: "Esta ação desativará a sincronização de coleções entre seus dispositivos. As configurações da extensão ainda serão sincronizadas."
|
text: "Esta ação desativará a sincronização de coleções entre seus dispositivos. As configurações da extensão ainda serão sincronizadas."
|
||||||
action: "Desativar e recarregar a extensão"
|
action: "Desativar e recarregar a extensão"
|
||||||
|
thumbnail_capture: "Capturar miniaturas e ícones para as abas salvas"
|
||||||
|
thumbnail_capture_notice1: "Requer permissão para acessar o conteúdo dos sites visitados"
|
||||||
|
thumbnail_capture_notice2: "Desativar esse recurso pode melhorar o desempenho em coleções grandes"
|
||||||
|
clear_thumbnails:
|
||||||
|
action: "Eliminar miniaturas guardadas"
|
||||||
|
title: "Excluir todas as miniaturas salvas?"
|
||||||
|
prompt: "Esta ação removerá todas as miniaturas, pré-visualizações e ícones salvos para suas abas salvas. Esta ação não pode ser desfeita."
|
||||||
about:
|
about:
|
||||||
title: "Sobre"
|
title: "Sobre"
|
||||||
developed_by: "Desenvolvido por Eugene Fox"
|
developed_by: "Desenvolvido por Eugene Fox"
|
||||||
@@ -133,6 +151,7 @@ options_page:
|
|||||||
website: "Meu site"
|
website: "Meu site"
|
||||||
source: "Código-fonte"
|
source: "Código-fonte"
|
||||||
changelog: "Registro de alterações"
|
changelog: "Registro de alterações"
|
||||||
|
privacy: "Política de Privacidade"
|
||||||
|
|
||||||
collections:
|
collections:
|
||||||
empty: "Esta coleção está vazia"
|
empty: "Esta coleção está vazia"
|
||||||
|
|||||||
@@ -36,6 +36,15 @@ features:
|
|||||||
text3: "Посетите блог разработчика (только на английском), чтобы узнать больше об этом обновлении и всех его функциях!"
|
text3: "Посетите блог разработчика (только на английском), чтобы узнать больше об этом обновлении и всех его функциях!"
|
||||||
actions:
|
actions:
|
||||||
visit_blog: "Читать блог"
|
visit_blog: "Читать блог"
|
||||||
|
settingsReview:
|
||||||
|
title: "Проверьте настройки"
|
||||||
|
action: "Все настройки"
|
||||||
|
analytics:
|
||||||
|
title: "Эта статистика позволит улучшать расширение"
|
||||||
|
p1: "Мы собираем только статистику использования (количество коллекций, используемые функции и т.д.)"
|
||||||
|
p2: "Мы не собираем ваши личные данные!"
|
||||||
|
p3_text: "Полный список собираемых данных можно посмотреть"
|
||||||
|
p3_link: "здесь"
|
||||||
|
|
||||||
notifications:
|
notifications:
|
||||||
tabs_saved:
|
tabs_saved:
|
||||||
@@ -73,7 +82,9 @@ options_page:
|
|||||||
show_delete_prompt: "Спрашивать подтверждение при удалении элементов"
|
show_delete_prompt: "Спрашивать подтверждение при удалении элементов"
|
||||||
show_badge: "Показывать счетчик"
|
show_badge: "Показывать счетчик"
|
||||||
show_notification: "Показывать уведомление при сохранении через контекстное меню"
|
show_notification: "Показывать уведомление при сохранении через контекстное меню"
|
||||||
|
show_partial_save_notification: "Показывать уведомление, если некоторые вкладки не были сохранены"
|
||||||
unload_tabs: "Не загружать вкладки после открытия"
|
unload_tabs: "Не загружать вкладки после открытия"
|
||||||
|
allow_analytics: "Разрешить сбор анонимной статистики"
|
||||||
list_locations:
|
list_locations:
|
||||||
title: "Открывать список коллекций в:"
|
title: "Открывать список коллекций в:"
|
||||||
options:
|
options:
|
||||||
@@ -121,6 +132,13 @@ options_page:
|
|||||||
disable_prompt:
|
disable_prompt:
|
||||||
text: "Это действие отключит синхронизацию коллекций между вашими устройствами. Настройки расширения продолжат храниться в облаке."
|
text: "Это действие отключит синхронизацию коллекций между вашими устройствами. Настройки расширения продолжат храниться в облаке."
|
||||||
action: "Отключить и перезагрузить расширение"
|
action: "Отключить и перезагрузить расширение"
|
||||||
|
thumbnail_capture: "Сохранять превью и иконки для сохранённых вкладок"
|
||||||
|
thumbnail_capture_notice1: "Необходим доступ к содержанию посещенных веб-сайтов"
|
||||||
|
thumbnail_capture_notice2: "Отключение этой функции может улучшить производительность при большом количестве сохраненных вкладок"
|
||||||
|
clear_thumbnails:
|
||||||
|
action: "Удалить сохранённые иконки"
|
||||||
|
title: "Удалить превью и иконки?"
|
||||||
|
prompt: "Это действие удалит все превью и иконки у ваших сохраненных вкладок. Это действие не может быть отменено."
|
||||||
about:
|
about:
|
||||||
title: "О расширении"
|
title: "О расширении"
|
||||||
developed_by: "Разработчик: Евгений Лис"
|
developed_by: "Разработчик: Евгений Лис"
|
||||||
@@ -133,6 +151,7 @@ options_page:
|
|||||||
website: "Мой веб-сайт"
|
website: "Мой веб-сайт"
|
||||||
source: "Исходный код"
|
source: "Исходный код"
|
||||||
changelog: "Список изменений"
|
changelog: "Список изменений"
|
||||||
|
privacy: "Политика конфиденциальности"
|
||||||
|
|
||||||
collections:
|
collections:
|
||||||
empty: "Эта коллекция пуста"
|
empty: "Эта коллекция пуста"
|
||||||
|
|||||||
@@ -36,6 +36,15 @@ features:
|
|||||||
text3: "Відвідайте блог розробника (тільки англійською), щоб дізнатися більше про це оновлення та всі його функції!"
|
text3: "Відвідайте блог розробника (тільки англійською), щоб дізнатися більше про це оновлення та всі його функції!"
|
||||||
actions:
|
actions:
|
||||||
visit_blog: "Читати блог"
|
visit_blog: "Читати блог"
|
||||||
|
settingsReview:
|
||||||
|
title: "Перевірте налаштування"
|
||||||
|
action: "Всi налаштування"
|
||||||
|
analytics:
|
||||||
|
title: "Ця статистика дозволить покращувати розширення"
|
||||||
|
p1: "Ми збираємо лише статистику використання (кількість колекцій, використовувані функції тощо)"
|
||||||
|
p2: "Ми не збираємо ваші особисті дані!"
|
||||||
|
p3_text: "Повний список зібраних даних можна подивитися"
|
||||||
|
p3_link: "тут"
|
||||||
|
|
||||||
notifications:
|
notifications:
|
||||||
tabs_saved:
|
tabs_saved:
|
||||||
@@ -73,7 +82,9 @@ options_page:
|
|||||||
show_delete_prompt: "Запитувати підтвердження при видаленні елементів"
|
show_delete_prompt: "Запитувати підтвердження при видаленні елементів"
|
||||||
show_badge: "Показувати лічильник"
|
show_badge: "Показувати лічильник"
|
||||||
show_notification: "Показувати сповіщення при збереженні через контекстне меню"
|
show_notification: "Показувати сповіщення при збереженні через контекстне меню"
|
||||||
|
show_partial_save_notification: "Показувати сповіщення, якщо деякі вкладки не були збережені"
|
||||||
unload_tabs: "Не завантажувати вкладки після відкриття"
|
unload_tabs: "Не завантажувати вкладки після відкриття"
|
||||||
|
allow_analytics: "Дозволити збір анонімної статистики"
|
||||||
list_locations:
|
list_locations:
|
||||||
title: "Відкривати список колекцій у:"
|
title: "Відкривати список колекцій у:"
|
||||||
options:
|
options:
|
||||||
@@ -121,6 +132,13 @@ options_page:
|
|||||||
disable_prompt:
|
disable_prompt:
|
||||||
text: "Ця дія вимкне синхронізацію колекцій між вашими пристроями. Налаштування продовжать зберігатися у хмарі."
|
text: "Ця дія вимкне синхронізацію колекцій між вашими пристроями. Налаштування продовжать зберігатися у хмарі."
|
||||||
action: "Вимкнути та перезавантажити розширення"
|
action: "Вимкнути та перезавантажити розширення"
|
||||||
|
thumbnail_capture: "Зберігати превью і іконки для збережених вкладок"
|
||||||
|
thumbnail_capture_notice1: "Необхідний доступ до вмісту відвіданих веб-сайтів"
|
||||||
|
thumbnail_capture_notice2: "Вимкнення цієї функції може покращити продуктивність при великій кількості збережених вкладок"
|
||||||
|
clear_thumbnails:
|
||||||
|
action: "Видалити збережені іконки"
|
||||||
|
title: "Видалити превью і іконки?"
|
||||||
|
prompt: "Ця дія видалить всі превью і іконки у ваших збережених вкладках. Цю дію не можна скасувати."
|
||||||
about:
|
about:
|
||||||
title: "О розширенні"
|
title: "О розширенні"
|
||||||
developed_by: "Розробник: Євген Лис"
|
developed_by: "Розробник: Євген Лис"
|
||||||
@@ -133,6 +151,7 @@ options_page:
|
|||||||
website: "Мій веб-сайт"
|
website: "Мій веб-сайт"
|
||||||
source: "Вихідний код"
|
source: "Вихідний код"
|
||||||
changelog: "Список змін"
|
changelog: "Список змін"
|
||||||
|
privacy: "Політика конфіденційності"
|
||||||
|
|
||||||
collections:
|
collections:
|
||||||
empty: "Ця колекція пуста"
|
empty: "Ця колекція пуста"
|
||||||
|
|||||||
+67
-48
@@ -5,8 +5,8 @@ manifest:
|
|||||||
|
|
||||||
shortcuts:
|
shortcuts:
|
||||||
toggle_sidebar: "打开收藏列表"
|
toggle_sidebar: "打开收藏列表"
|
||||||
set_aside: "将标签放到一边"
|
set_aside: "搁置标签页"
|
||||||
save_tabs: "保存标签而不关闭"
|
save_tabs: "保存标签页但不关闭"
|
||||||
|
|
||||||
common:
|
common:
|
||||||
actions:
|
actions:
|
||||||
@@ -14,10 +14,10 @@ common:
|
|||||||
save: "保存"
|
save: "保存"
|
||||||
close: "关闭"
|
close: "关闭"
|
||||||
delete: "删除"
|
delete: "删除"
|
||||||
reset_filters: "重置筛选器"
|
reset_filters: "重置筛选"
|
||||||
cta:
|
cta:
|
||||||
feedback: "留下反馈"
|
feedback: "留下反馈"
|
||||||
sponsor: "请我喝咖啡"
|
sponsor: "请我喝杯咖啡!"
|
||||||
tooltips:
|
tooltips:
|
||||||
more: "更多"
|
more: "更多"
|
||||||
delete_prompt: "您确定吗?此操作无法撤销。"
|
delete_prompt: "您确定吗?此操作无法撤销。"
|
||||||
@@ -25,42 +25,51 @@ common:
|
|||||||
features:
|
features:
|
||||||
v3welcome:
|
v3welcome:
|
||||||
title: "欢迎使用搁置的标签页 3.0"
|
title: "欢迎使用搁置的标签页 3.0"
|
||||||
text1: "我们很高兴宣布搁置的标签页扩展的新重大更新!"
|
text1: "我们很高兴宣布搁置的标签页扩展新的重大更新!"
|
||||||
text2: "此更新带来了全新的用户界面,以及许多新功能,包括:"
|
text2: "此更新带来了全新的用户界面,以及许多新功能,包括:"
|
||||||
list:
|
list:
|
||||||
item1: "支持标签组"
|
item1: "支持标签组"
|
||||||
item2: "收藏自定义"
|
item2: "收藏自定义"
|
||||||
item3: "拖放重新排序和组织"
|
item3: "拖放排序和整理"
|
||||||
item4: "从头开始手动创建收藏"
|
item4: "从零开始创建收藏"
|
||||||
item5: "以及更多!"
|
item5: "以及更多!"
|
||||||
text3: "访问我们的开发博客以了解有关此更新及其所有功能的更多信息!"
|
text3: "访问我们的开发博客以了解有关此更新及其所有功能的更多信息!"
|
||||||
actions:
|
actions:
|
||||||
visit_blog: "阅读开发博客"
|
visit_blog: "阅读开发博客"
|
||||||
|
settingsReview:
|
||||||
|
title: "检查您的设置"
|
||||||
|
action: "所有设置"
|
||||||
|
analytics:
|
||||||
|
title: "这些统计数据将帮助我们改进扩展"
|
||||||
|
p1: "我们只收集使用统计数据(收藏数量、使用的功能等)"
|
||||||
|
p2: "我们不会收集您的任何数据!"
|
||||||
|
p3_text: "请参阅我们收集内容的"
|
||||||
|
p3_link: "完整列表"
|
||||||
|
|
||||||
notifications:
|
notifications:
|
||||||
tabs_saved:
|
tabs_saved:
|
||||||
title: "新收藏已创建"
|
title: "已创建新收藏"
|
||||||
message: "您的标签已保存到新收藏中"
|
message: "您的标签页已保存到新收藏中"
|
||||||
error_quota_exceeded:
|
error_quota_exceeded:
|
||||||
title: "超出最大云写入操作"
|
title: "超出最大云储存写入操作"
|
||||||
message: "我们已将您的标签保存到本地存储。您需要手动更新云存储"
|
message: "我们已将您的标签页保存到本地存储。您需要手动更新云存储"
|
||||||
error_storage_full:
|
error_storage_full:
|
||||||
title: "您的云存储已满"
|
title: "您的云存储已满"
|
||||||
message: "我们已将您的标签保存到本地存储。请清理一些云存储空间"
|
message: "我们已将您的标签页保存到本地存储。请清理一些云存储空间"
|
||||||
bookmark_saved:
|
bookmark_saved:
|
||||||
title: "已导出到书签"
|
title: "已导出到书签"
|
||||||
message: "您的收藏已导出到书签"
|
message: "您的收藏已导出到书签"
|
||||||
partial_save:
|
partial_save:
|
||||||
title: "某些标签无法保存"
|
title: "部分标签页无法保存"
|
||||||
message: "某些标签是我们无法访问的系统标签。它们已被跳过"
|
message: "部分标签页是无法访问的系统标签页。它们已被跳过"
|
||||||
|
|
||||||
actions:
|
actions:
|
||||||
save:
|
save:
|
||||||
all: "保存所有标签"
|
all: "保存所有标签页"
|
||||||
selected: "保存选定的标签"
|
selected: "保存选定的标签页"
|
||||||
set_aside:
|
set_aside:
|
||||||
all: "将所有标签放到一边"
|
all: "搁置所有标签页"
|
||||||
selected: "将选定的标签放到一边"
|
selected: "搁置选定的标签页"
|
||||||
show_collections: "显示收藏"
|
show_collections: "显示收藏"
|
||||||
|
|
||||||
options_page:
|
options_page:
|
||||||
@@ -69,11 +78,13 @@ options_page:
|
|||||||
title: "常规"
|
title: "常规"
|
||||||
options:
|
options:
|
||||||
always_show_toolbars: "始终显示工具栏"
|
always_show_toolbars: "始终显示工具栏"
|
||||||
include_pinned: "保存所有标签时包括固定标签"
|
include_pinned: "保存所有标签页时包括已固定的标签页"
|
||||||
show_delete_prompt: "删除项目时要求确认"
|
show_delete_prompt: "删除项目时要求确认"
|
||||||
show_badge: "显示计数徽章"
|
show_badge: "显示计数角标"
|
||||||
show_notification: "使用上下文菜单保存标签时显示通知"
|
show_notification: "使用上下文菜单保存标签页时显示通知"
|
||||||
unload_tabs: "打开后不加载标签"
|
show_partial_save_notification: "如果某些标签页无法保存则显示通知"
|
||||||
|
unload_tabs: "打开后不加载标签页"
|
||||||
|
allow_analytics: "允许收集匿名统计数据"
|
||||||
list_locations:
|
list_locations:
|
||||||
title: "在以下位置打开收藏列表:"
|
title: "在以下位置打开收藏列表:"
|
||||||
options:
|
options:
|
||||||
@@ -92,15 +103,15 @@ options_page:
|
|||||||
title: "默认操作"
|
title: "默认操作"
|
||||||
options:
|
options:
|
||||||
save_actions:
|
save_actions:
|
||||||
title: "保存标签时的默认操作"
|
title: "保存标签页时的默认操作"
|
||||||
options:
|
options:
|
||||||
set_aside: "保存并关闭标签"
|
set_aside: "保存并关闭标签页"
|
||||||
save: "保存标签而不关闭"
|
save: "保存标签页而不关闭"
|
||||||
restore_actions:
|
restore_actions:
|
||||||
title: "打开收藏时的默认操作"
|
title: "打开收藏时的默认操作"
|
||||||
options:
|
options:
|
||||||
open: "仅打开标签"
|
open: "仅打开标签页"
|
||||||
restore: "打开标签并删除收藏"
|
restore: "打开标签页并删除收藏"
|
||||||
storage:
|
storage:
|
||||||
title: "存储"
|
title: "存储"
|
||||||
capacity:
|
capacity:
|
||||||
@@ -114,29 +125,37 @@ options_page:
|
|||||||
import_prompt:
|
import_prompt:
|
||||||
title: "导入数据"
|
title: "导入数据"
|
||||||
warning_title: "这是不可逆的操作"
|
warning_title: "这是不可逆的操作"
|
||||||
warning_text: "这将覆盖您的所有数据。请确保选择了正确的文件,否则可能会导致数据损坏或丢失。建议先导出数据。"
|
warning_text: "这将覆盖您的所有数据!请确保选择了正确的文件,否则可能会导致数据损坏或丢失。建议先导出数据。"
|
||||||
proceed: "选择文件"
|
proceed: "选择文件"
|
||||||
enable: "启用云存储"
|
enable: "启用云存储"
|
||||||
disable: "禁用云存储"
|
disable: "禁用云存储"
|
||||||
disable_prompt:
|
disable_prompt:
|
||||||
text: "此操作将禁用设备之间的收藏同步。扩展设置仍将同步。"
|
text: "此操作将禁用设备之间的收藏同步。扩展设置仍将同步。"
|
||||||
action: "禁用并重新加载扩展"
|
action: "禁用并重新加载扩展"
|
||||||
|
thumbnail_capture: "为已保存的标签页保存缩略图和图标"
|
||||||
|
thumbnail_capture_notice1: "需要访问已访问网站内容的权限"
|
||||||
|
thumbnail_capture_notice2: "有大量收藏时,禁用此功能可能会提高性能"
|
||||||
|
clear_thumbnails:
|
||||||
|
action: "删除已保存的图标"
|
||||||
|
title: "删除缩略图和图标?"
|
||||||
|
prompt: "此操作将删除您已保存标签页的所有缩略图和图标。此操作无法撤消。"
|
||||||
about:
|
about:
|
||||||
title: "关于"
|
title: "关于"
|
||||||
developed_by: "由尤金·福克斯开发"
|
developed_by: "由尤金·福克斯开发"
|
||||||
licensed_under: "许可协议"
|
licensed_under: "许可协议"
|
||||||
mit_license: "MIT 许可协议"
|
mit_license: "MIT 协议"
|
||||||
translation_cta:
|
translation_cta:
|
||||||
text: "发现错别字或想为您的语言提供翻译?"
|
text: "发现错别字或想为您的语言提供翻译?"
|
||||||
button: "从这里开始"
|
button: "快速入门"
|
||||||
links:
|
links:
|
||||||
website: "我的网站"
|
website: "我的网站"
|
||||||
source: "源代码"
|
source: "源代码"
|
||||||
changelog: "更新日志"
|
changelog: "更新日志"
|
||||||
|
privacy: "隐私政策"
|
||||||
|
|
||||||
collections:
|
collections:
|
||||||
empty: "此收藏为空"
|
empty: "此收藏为空"
|
||||||
tabs_count: "$1 个标签"
|
tabs_count: "$1 个标签页"
|
||||||
actions:
|
actions:
|
||||||
open: "打开所有"
|
open: "打开所有"
|
||||||
restore: "恢复所有"
|
restore: "恢复所有"
|
||||||
@@ -152,35 +171,35 @@ collections:
|
|||||||
p1: "扩展需要权限才能在 InPrivate 窗口中打开标签"
|
p1: "扩展需要权限才能在 InPrivate 窗口中打开标签"
|
||||||
p2: "为此,请单击“设置”,然后勾选“允许在 InPrivate 中”选项"
|
p2: "为此,请单击“设置”,然后勾选“允许在 InPrivate 中”选项"
|
||||||
firefox:
|
firefox:
|
||||||
p1: "扩展需要权限才能在隐私窗口中打开标签"
|
p1: "扩展需要权限才能在隐私窗口中打开标签页"
|
||||||
p2: "为此,请单击“设置”,转到“详细信息”并将“在隐私窗口中运行”设置为“允许”"
|
p2: "为此,请单击“设置”,转到“详细信息”并将“在隐私窗口中运行”设置为“允许”"
|
||||||
chrome:
|
chrome:
|
||||||
p1: "扩展需要权限才能在隐身窗口中打开标签"
|
p1: "扩展需要权限才能在隐身窗口中打开标签页"
|
||||||
p2: "为此,请单击“设置”,然后勾选“允许在隐身中”选项"
|
p2: "为此,请单击“设置”,然后勾选“允许在隐身中”选项"
|
||||||
action: "设置"
|
action: "设置"
|
||||||
menu:
|
menu:
|
||||||
delete: "删除收藏"
|
delete: "删除收藏"
|
||||||
add_selected: "添加选定的标签"
|
add_selected: "添加选定的标签页"
|
||||||
add_all: "添加所有标签"
|
add_all: "添加所有标签页"
|
||||||
add_group: "添加空组"
|
add_group: "添加空分组"
|
||||||
export_bookmarks: "导出到书签"
|
export_bookmarks: "导出到书签"
|
||||||
edit: "编辑收藏"
|
edit: "编辑收藏"
|
||||||
|
|
||||||
groups:
|
groups:
|
||||||
title: "组"
|
title: "分组"
|
||||||
pinned: "已固定"
|
pinned: "已固定"
|
||||||
open: "打开所有"
|
open: "打开所有"
|
||||||
empty: "此组为空"
|
empty: "此分组为空"
|
||||||
menu:
|
menu:
|
||||||
new_window: "在新窗口中打开"
|
new_window: "在新窗口中打开"
|
||||||
add_selected: "添加选定的标签"
|
add_selected: "添加选定的标签页"
|
||||||
add_all: "添加所有标签"
|
add_all: "添加所有标签页"
|
||||||
edit: "编辑组"
|
edit: "编辑分组"
|
||||||
ungroup: "取消分组"
|
ungroup: "取消分组"
|
||||||
delete: "删除组"
|
delete: "删除分组"
|
||||||
|
|
||||||
tabs:
|
tabs:
|
||||||
delete: "删除标签"
|
delete: "删除标签页"
|
||||||
|
|
||||||
colors:
|
colors:
|
||||||
none: "无颜色"
|
none: "无颜色"
|
||||||
@@ -199,8 +218,8 @@ dialogs:
|
|||||||
edit:
|
edit:
|
||||||
title:
|
title:
|
||||||
edit_collection: "编辑收藏"
|
edit_collection: "编辑收藏"
|
||||||
edit_group: "编辑组"
|
edit_group: "编辑分组"
|
||||||
new_group: "新组"
|
new_group: "新分组"
|
||||||
new_collection: "新收藏"
|
new_collection: "新收藏"
|
||||||
collection_title: "标题"
|
collection_title: "标题"
|
||||||
color: "颜色"
|
color: "颜色"
|
||||||
@@ -210,7 +229,7 @@ main:
|
|||||||
create_collection: "创建新收藏"
|
create_collection: "创建新收藏"
|
||||||
menu:
|
menu:
|
||||||
tiles_view: "平铺视图"
|
tiles_view: "平铺视图"
|
||||||
changelog: "更新内容?"
|
changelog: "更新内容"
|
||||||
list:
|
list:
|
||||||
searchbar:
|
searchbar:
|
||||||
title: "搜索"
|
title: "搜索"
|
||||||
@@ -225,7 +244,7 @@ main:
|
|||||||
custom: "自定义"
|
custom: "自定义"
|
||||||
empty:
|
empty:
|
||||||
title: "这里还没有内容"
|
title: "这里还没有内容"
|
||||||
message: "将当前标签放到一边,或创建新收藏"
|
message: "搁置当前标签页,或创建新收藏"
|
||||||
empty_search:
|
empty_search:
|
||||||
title: "未找到任何内容"
|
title: "未找到任何内容"
|
||||||
message: "尝试更改搜索查询"
|
message: "尝试更改搜索查询"
|
||||||
@@ -247,5 +266,5 @@ parse_error_message:
|
|||||||
merge_conflict_message:
|
merge_conflict_message:
|
||||||
title: "您的本地和云存储有冲突的更改。"
|
title: "您的本地和云存储有冲突的更改。"
|
||||||
message: "要解决此问题,您可以将本地副本上传到云端,或接受云端更改。"
|
message: "要解决此问题,您可以将本地副本上传到云端,或接受云端更改。"
|
||||||
accept_local: "用本地替换"
|
accept_local: "采用本地替换云端"
|
||||||
accept_cloud: "接受云端更改"
|
accept_cloud: "接受云端更改"
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ export type DefaultGroupItem =
|
|||||||
type: "group";
|
type: "group";
|
||||||
pinned?: false;
|
pinned?: false;
|
||||||
title?: string;
|
title?: string;
|
||||||
color: chrome.tabGroups.ColorEnum;
|
color: `${Browser.tabGroups.Color}`;
|
||||||
items: TabItem[];
|
items: TabItem[];
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -28,7 +28,7 @@ export type CollectionItem =
|
|||||||
type: "collection";
|
type: "collection";
|
||||||
timestamp: number;
|
timestamp: number;
|
||||||
title?: string;
|
title?: string;
|
||||||
color?: chrome.tabGroups.ColorEnum;
|
color?: `${Browser.tabGroups.Color}`;
|
||||||
items: (TabItem | GroupItem)[];
|
items: (TabItem | GroupItem)[];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
+19
-20
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "tabs-aside",
|
"name": "tabs-aside",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "3.0.0",
|
"version": "3.2.1",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "wxt",
|
"dev": "wxt",
|
||||||
@@ -16,32 +16,31 @@
|
|||||||
"@dnd-kit/modifiers": "^9.0.0",
|
"@dnd-kit/modifiers": "^9.0.0",
|
||||||
"@dnd-kit/sortable": "^10.0.0",
|
"@dnd-kit/sortable": "^10.0.0",
|
||||||
"@dnd-kit/utilities": "^3.2.2",
|
"@dnd-kit/utilities": "^3.2.2",
|
||||||
"@fluentui/react-components": "^9.68.1",
|
"@fluentui/react-components": "^9.72.6",
|
||||||
"@fluentui/react-icons": "^2.0.307",
|
"@fluentui/react-icons": "^2.0.313",
|
||||||
"@webext-core/messaging": "^2.3.0",
|
"@webext-core/messaging": "^2.3.0",
|
||||||
"@wxt-dev/analytics": "^0.4.1",
|
"@wxt-dev/analytics": "^0.5.1",
|
||||||
"@wxt-dev/i18n": "^0.2.4",
|
"@wxt-dev/i18n": "^0.2.4",
|
||||||
"lzutf8": "^0.6.3",
|
"lzutf8": "^0.6.3",
|
||||||
"react": "^18.3.1",
|
"react": "~19.2.0",
|
||||||
"react-dom": "^18.3.1"
|
"react-dom": "~19.2.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@eslint/css": "^0.10.0",
|
"@eslint/css": "^0.14.1",
|
||||||
"@eslint/js": "^9.32.0",
|
"@eslint/js": "^9.39.1",
|
||||||
"@eslint/json": "^0.13.1",
|
"@eslint/json": "^0.14.0",
|
||||||
"@stylistic/eslint-plugin": "^5.2.2",
|
"@stylistic/eslint-plugin": "^5.5.0",
|
||||||
"@types/react": "^18.3.1",
|
"@types/react": "~19.2.2",
|
||||||
"@types/react-dom": "^18.3.1",
|
"@types/react-dom": "~19.2.2",
|
||||||
"@types/scheduler": "0.23.0",
|
"@wxt-dev/module-react": "^1.1.5",
|
||||||
"@wxt-dev/module-react": "^1.1.3",
|
"eslint": "^9.39.1",
|
||||||
"eslint": "^9.32.0",
|
|
||||||
"eslint-plugin-react": "^7.37.5",
|
"eslint-plugin-react": "^7.37.5",
|
||||||
"globals": "^16.3.0",
|
"globals": "^16.5.0",
|
||||||
"scheduler": "0.23.0",
|
"scheduler": "0.23.0",
|
||||||
"typescript": "^5.8.3",
|
"typescript": "^5.9.3",
|
||||||
"typescript-eslint": "^8.38.0",
|
"typescript-eslint": "^8.46.4",
|
||||||
"vite": "^7.0.6",
|
"vite": "^7.2.2",
|
||||||
"wxt": "~0.19.29"
|
"wxt": "^0.20.11"
|
||||||
},
|
},
|
||||||
"packageManager": "yarn@4.9.2"
|
"packageManager": "yarn@4.9.2"
|
||||||
}
|
}
|
||||||
|
|||||||
+11
-13
@@ -31,19 +31,17 @@ Stemming its roots from the original Microsoft Edge browser feature, this extens
|
|||||||
|
|
||||||
It allows you to save and manage your tabs in a convenient way, providing a range of features that make it easy to organize and access your saved tabs.
|
It allows you to save and manage your tabs in a convenient way, providing a range of features that make it easy to organize and access your saved tabs.
|
||||||
|
|
||||||
<b>Features</b>
|
**Features**
|
||||||
<ul>
|
- **Save tabs:** Save all your open tabs in a single click, and restore them later
|
||||||
<li><b>Save tabs</b>: Save all your open tabs in a single click, and restore them later</li>
|
- **Organize tabs:** Create collections and subgroups to organize your saved tabs
|
||||||
<li><b>Organize tabs</b>: Create collections and subgroups to organize your saved tabs</li>
|
- **Search tabs:** Quickly find the tabs you need using the search feature
|
||||||
<li><b>Search tabs</b>: Quickly find the tabs you need using the search feature</li>
|
- **Sync across devices:** Access your saved tabs from any device with your account
|
||||||
<li><b>Sync across devices</b>: Access your saved tabs from any device with your account</li>
|
- **Go dark:** Dark mode support for a more comfortable browsing experience
|
||||||
<li><b>Go dark</b>: Dark mode support for a more comfortable browsing experience</li>
|
- **Personalize:** Change the appearance and behavior of the extension to suit your needs
|
||||||
<li><b>Personalize</b>: Change the appearance and behavior of the extension to suit your needs</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
Check out our <a href="https://at.xfox111.net/tabs-aside-3-0">blog post</a> regarding all the new features and improvements in Tabs aside 3.0
|
Check out our [blog post](https://at.xfox111.net/tabs-aside-3-0) regarding all the new features and improvements in Tabs aside 3.0
|
||||||
|
|
||||||
<b>Hey, it's an open-source software!</b>
|
**Hey, it's an open-source software!**
|
||||||
If you know how to improve this extension you can check <a href="https://github.com/xfox111/TabsAsideExtension">its GitHub Repository</a>
|
If you know how to improve this extension you can check [its GitHub Repository](https://github.com/xfox111/TabsAsideExtension)
|
||||||
|
|
||||||
Check out <a href="https://github.com/xfox111/TabsAsideExtension/releases/latest">release changelog</a>
|
Check out [release changelog](https://github.com/xfox111/TabsAsideExtension/releases/latest)
|
||||||
|
|||||||
+11
-13
@@ -30,19 +30,17 @@ Basada en la funcionalidad original del navegador Microsoft Edge, esta extensió
|
|||||||
|
|
||||||
Te permite guardar y gestionar tus pestañas de manera conveniente, proporcionando una gama de características que facilitan organizar y acceder a tus pestañas guardadas.
|
Te permite guardar y gestionar tus pestañas de manera conveniente, proporcionando una gama de características que facilitan organizar y acceder a tus pestañas guardadas.
|
||||||
|
|
||||||
<b>Características</b>
|
**Características**
|
||||||
<ul>
|
- **Guardar pestañas:** Guarda todas tus pestañas abiertas con un solo clic y restáuralas más tarde
|
||||||
<li><b>Guardar pestañas</b>: Guarda todas tus pestañas abiertas con un solo clic y restáuralas más tarde</li>
|
- **Organizar pestañas:** Crea colecciones y subgrupos para organizar tus pestañas guardadas
|
||||||
<li><b>Organizar pestañas</b>: Crea colecciones y subgrupos para organizar tus pestañas guardadas</li>
|
- **Buscar pestañas:** Encuentra rápidamente las pestañas que necesitas usando la función de búsqueda
|
||||||
<li><b>Buscar pestañas</b>: Encuentra rápidamente las pestañas que necesitas usando la función de búsqueda</li>
|
- **Sincronizar entre dispositivos:** Accede a tus pestañas guardadas desde cualquier dispositivo con tu cuenta
|
||||||
<li><b>Sincronizar entre dispositivos</b>: Accede a tus pestañas guardadas desde cualquier dispositivo con tu cuenta</li>
|
- **Modo oscuro:** Soporte para modo oscuro para una experiencia de navegación más cómoda
|
||||||
<li><b>Modo oscuro</b>: Soporte para modo oscuro para una experiencia de navegación más cómoda</li>
|
- **Personalizar:** Cambia la apariencia y el comportamiento de la extensión para adaptarla a tus necesidades
|
||||||
<li><b>Personalizar</b>: Cambia la apariencia y el comportamiento de la extensión para adaptarla a tus necesidades</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
Consulta nuestra <a href="https://at.xfox111.net/tabs-aside-3-0">publicación en el blog</a> sobre todas las nuevas características y mejoras en Pestañas a un lado 3.0
|
Consulta nuestra [publicación en el blog](https://at.xfox111.net/tabs-aside-3-0) sobre todas las nuevas características y mejoras en Pestañas a un lado 3.0
|
||||||
|
|
||||||
<b>¡Oye, es un software de código abierto!</b>
|
**¡Oye, es un software de código abierto!**
|
||||||
Si sabes cómo mejorar esta extensión, puedes revisar <a href="https://github.com/xfox111/TabsAsideExtension">su repositorio de GitHub</a>
|
Si sabes cómo mejorar esta extensión, puedes revisar [su repositorio de GitHub](https://github.com/xfox111/TabsAsideExtension)
|
||||||
|
|
||||||
Consulta el <a href="https://github.com/xfox111/TabsAsideExtension/releases/latest">registro de cambios</a>
|
Consulta el [registro de cambios](https://github.com/xfox111/TabsAsideExtension/releases/latest)
|
||||||
|
|||||||
+11
-13
@@ -30,19 +30,17 @@ Radicata nella funzionalità originale del browser Microsoft Edge, questa estens
|
|||||||
|
|
||||||
Ti consente di salvare e gestire le tue schede in modo conveniente, fornendo una gamma di funzionalità che rendono facile organizzare e accedere alle tue schede salvate.
|
Ti consente di salvare e gestire le tue schede in modo conveniente, fornendo una gamma di funzionalità che rendono facile organizzare e accedere alle tue schede salvate.
|
||||||
|
|
||||||
<b>Funzionalità</b>
|
**Funzionalità**
|
||||||
<ul>
|
- **Salva schede:** Salva tutte le tue schede aperte con un solo clic e ripristinale in seguito
|
||||||
<li><b>Salva schede</b>: Salva tutte le tue schede aperte con un solo clic e ripristinale in seguito</li>
|
- **Organizza schede:** Crea collezioni e sottogruppi per organizzare le tue schede salvate
|
||||||
<li><b>Organizza schede</b>: Crea collezioni e sottogruppi per organizzare le tue schede salvate</li>
|
- **Cerca schede:** Trova rapidamente le schede di cui hai bisogno utilizzando la funzione di ricerca
|
||||||
<li><b>Cerca schede</b>: Trova rapidamente le schede di cui hai bisogno utilizzando la funzione di ricerca</li>
|
- **Sincronizza tra dispositivi:** Accedi alle tue schede salvate da qualsiasi dispositivo con il tuo account
|
||||||
<li><b>Sincronizza tra dispositivi</b>: Accedi alle tue schede salvate da qualsiasi dispositivo con il tuo account</li>
|
- **Modalità scura:** Supporto per la modalità scura per un'esperienza di navigazione più confortevole
|
||||||
<li><b>Modalità scura</b>: Supporto per la modalità scura per un'esperienza di navigazione più confortevole</li>
|
- **Personalizza:** Cambia l'aspetto e il comportamento dell'estensione per soddisfare le tue esigenze
|
||||||
<li><b>Personalizza</b>: Cambia l'aspetto e il comportamento dell'estensione per soddisfare le tue esigenze</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
Dai un'occhiata al nostro <a href="https://at.xfox111.net/tabs-aside-3-0">post sul blog</a> riguardante tutte le nuove funzionalità e miglioramenti in Schede a parte 3.0
|
Dai un'occhiata al nostro [post sul blog](https://at.xfox111.net/tabs-aside-3-0) riguardante tutte le nuove funzionalità e miglioramenti in Schede a parte 3.0
|
||||||
|
|
||||||
<b>Ehi, è un software open-source!</b>
|
**Ehi, è un software open-source!**
|
||||||
Se sai come migliorare questa estensione, puoi controllare <a href="https://github.com/xfox111/TabsAsideExtension">il suo repository GitHub</a>
|
Se sai come migliorare questa estensione, puoi controllare [il suo repository GitHub](https://github.com/xfox111/TabsAsideExtension)
|
||||||
|
|
||||||
Consulta il <a href="https://github.com/xfox111/TabsAsideExtension/releases/latest">registro delle modifiche</a>
|
Consulta il [registro delle modifiche](https://github.com/xfox111/TabsAsideExtension/releases/latest)
|
||||||
|
|||||||
+11
-13
@@ -30,19 +30,17 @@ Zainspirowane funkcją z pierwszych wersji Microsoft Edge, to rozszerzenie stał
|
|||||||
|
|
||||||
Pozwala wygodnie zapisywać i zarządzać kartami, oferując wiele funkcji, które ułatwiają organizację i dostęp do zapisanych kart.
|
Pozwala wygodnie zapisywać i zarządzać kartami, oferując wiele funkcji, które ułatwiają organizację i dostęp do zapisanych kart.
|
||||||
|
|
||||||
<b>Funkcje</b>
|
**Funkcje**
|
||||||
<ul>
|
- **Zapisywanie kart:** Zapisz wszystkie otwarte karty jednym kliknięciem i przywróć je później
|
||||||
<li><b>Zapisywanie kart</b>: Zapisz wszystkie otwarte karty jednym kliknięciem i przywróć je później</li>
|
- **Organizacja kart:** Twórz kolekcje i podgrupy, aby organizować zapisane karty
|
||||||
<li><b>Organizacja kart</b>: Twórz kolekcje i podgrupy, aby organizować zapisane karty</li>
|
- **Wyszukiwanie kart:** Szybko znajdź potrzebne karty za pomocą funkcji wyszukiwania
|
||||||
<li><b>Wyszukiwanie kart</b>: Szybko znajdź potrzebne karty za pomocą funkcji wyszukiwania</li>
|
- **Synchronizacja między urządzeniami:** Dostęp do zapisanych kart z dowolnego urządzenia za pomocą swojego konta
|
||||||
<li><b>Synchronizacja między urządzeniami</b>: Dostęp do zapisanych kart z dowolnego urządzenia za pomocą swojego konta</li>
|
- **Tryb ciemny:** Obsługa trybu ciemnego dla bardziej komfortowego użytkowania
|
||||||
<li><b>Tryb ciemny</b>: Obsługa trybu ciemnego dla bardziej komfortowego użytkowania</li>
|
- **Personalizacja:** Dostosuj wygląd i działanie rozszerzenia do swoich potrzeb
|
||||||
<li><b>Personalizacja</b>: Dostosuj wygląd i działanie rozszerzenia do swoich potrzeb</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
Odwiedź <a href="https://at.xfox111.net/tabs-aside-3-0">naszego bloga</a>, aby dowiedzieć się więcej o wszystkich nowych funkcjach i ulepszeniach w Odłożonych kartach 3.0
|
Odwiedź [naszego bloga](https://at.xfox111.net/tabs-aside-3-0), aby dowiedzieć się więcej o wszystkich nowych funkcjach i ulepszeniach w Odłożonych kartach 3.0
|
||||||
|
|
||||||
<b>Przy okazji, to rozszerzenie open-source!</b>
|
**Przy okazji, to rozszerzenie open-source!**
|
||||||
Jeśli wiesz, jak ulepszyć to rozszerzenie, możesz odwiedzić <a href="https://github.com/xfox111/TabsAsideExtension">jego repozytorium na GitHubie</a>
|
Jeśli wiesz, jak ulepszyć to rozszerzenie, możesz odwiedzić [jego repozytorium na GitHubie](https://github.com/xfox111/TabsAsideExtension)
|
||||||
|
|
||||||
<a href="https://github.com/xfox111/TabsAsideExtension/releases/latest">Lista zmian w najnowszej wersji</a>
|
[Lista zmian w najnowszej wersji](https://github.com/xfox111/TabsAsideExtension/releases/latest)
|
||||||
|
|||||||
@@ -31,19 +31,17 @@ Originando-se do recurso original do navegador Microsoft Edge, esta extensão cr
|
|||||||
|
|
||||||
Ela permite que você salve e gerencie suas abas de forma conveniente, oferecendo uma variedade de recursos que facilitam a organização e o acesso às abas salvas.
|
Ela permite que você salve e gerencie suas abas de forma conveniente, oferecendo uma variedade de recursos que facilitam a organização e o acesso às abas salvas.
|
||||||
|
|
||||||
<b>Recursos</b>
|
**Recursos**
|
||||||
<ul>
|
- **Salvar abas:** Salve todas as suas abas abertas com um único clique e restaure-as depois
|
||||||
<li><b>Salvar abas</b>: Salve todas as suas abas abertas com um único clique e restaure-as depois</li>
|
- **Organizar abas:** Crie coleções e subgrupos para organizar suas abas salvas
|
||||||
<li><b>Organizar abas</b>: Crie coleções e subgrupos para organizar suas abas salvas</li>
|
- **Pesquisar abas:** Encontre rapidamente as abas que você precisa usando o recurso de pesquisa
|
||||||
<li><b>Pesquisar abas</b>: Encontre rapidamente as abas que você precisa usando o recurso de pesquisa</li>
|
- **Sincronizar entre dispositivos:** Acesse suas abas salvas de qualquer dispositivo com sua conta
|
||||||
<li><b>Sincronizar entre dispositivos</b>: Acesse suas abas salvas de qualquer dispositivo com sua conta</li>
|
- **Modo escuro:** Suporte ao modo escuro para uma experiência de navegação mais confortável
|
||||||
<li><b>Modo escuro</b>: Suporte ao modo escuro para uma experiência de navegação mais confortável</li>
|
- **Personalizar:** Altere a aparência e o comportamento da extensão conforme suas necessidades
|
||||||
<li><b>Personalizar</b>: Altere a aparência e o comportamento da extensão conforme suas necessidades</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
Confira nossa <a href="https://at.xfox111.net/tabs-aside-3-0">postagem no blog</a> sobre todos os novos recursos e melhorias do Tabs Aside 3.0
|
Confira nossa [postagem no blog](https://at.xfox111.net/tabs-aside-3-0) sobre todos os novos recursos e melhorias do Tabs Aside 3.0
|
||||||
|
|
||||||
<b>Ei, é um software de código aberto!</b>
|
**Ei, é um software de código aberto!**
|
||||||
Se você sabe como melhorar esta extensão, confira <a href="https://github.com/xfox111/TabsAsideExtension">seu repositório no GitHub</a>
|
Se você sabe como melhorar esta extensão, confira [seu repositório no GitHub](https://github.com/xfox111/TabsAsideExtension)
|
||||||
|
|
||||||
Veja o <a href="https://github.com/xfox111/TabsAsideExtension/releases/latest">changelog das versões</a>
|
Veja o [changelog das versões](https://github.com/xfox111/TabsAsideExtension/releases/latest)
|
||||||
|
|||||||
+11
-13
@@ -30,19 +30,17 @@ https://github.com/xfox111/TabsAsideExtension/releases/latest
|
|||||||
|
|
||||||
Оно позволяет сохранять и управлять вашими вкладками удобным образом, предоставляя множество функций, которые упрощают организацию и доступ к сохраненным вкладкам.
|
Оно позволяет сохранять и управлять вашими вкладками удобным образом, предоставляя множество функций, которые упрощают организацию и доступ к сохраненным вкладкам.
|
||||||
|
|
||||||
<b>Возможности</b>
|
**Возможности**
|
||||||
<ul>
|
- **Сохранение вкладок:** Сохраните все открытые вкладки одним кликом и восстановите их позже
|
||||||
<li><b>Сохранение вкладок</b>: Сохраните все открытые вкладки одним кликом и восстановите их позже</li>
|
- **Организация вкладок:** Создавайте коллекции и подгруппы для организации сохраненных вкладок
|
||||||
<li><b>Организация вкладок</b>: Создавайте коллекции и подгруппы для организации сохраненных вкладок</li>
|
- **Поиск вкладок:** Быстро находите нужные вкладки с помощью функции поиска
|
||||||
<li><b>Поиск вкладок</b>: Быстро находите нужные вкладки с помощью функции поиска</li>
|
- **Синхронизация между устройствами:** Доступ к сохраненным вкладкам с любого устройства через ваш аккаунт
|
||||||
<li><b>Синхронизация между устройствами</b>: Доступ к сохраненным вкладкам с любого устройства через ваш аккаунт</li>
|
- **Темный режим:** Поддержка темного режима для более комфортного использования
|
||||||
<li><b>Темный режим</b>: Поддержка темного режима для более комфортного использования</li>
|
- **Персонализация:** Изменяйте внешний вид и поведение расширения под свои нужды
|
||||||
<li><b>Персонализация</b>: Изменяйте внешний вид и поведение расширения под свои нужды</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
Посетите <a href="https://at.xfox111.net/tabs-aside-3-0">наш блог</a>, чтобы узнать больше о всех новых функциях и улучшениях в Отложенных вкладках 3.0 по ссылке
|
Посетите [наш блог](https://at.xfox111.net/tabs-aside-3-0), чтобы узнать больше о всех новых функциях и улучшениях в Отложенных вкладках 3.0 по ссылке
|
||||||
|
|
||||||
<b>Кстати это опенсорс расширение!</b>
|
**Кстати это опенсорс расширение!**
|
||||||
Если вы знаете, как можно его улучшить, можете перейти на <a href="https://github.com/xfox111/TabsAsideExtension">страницу GitHub репозитория проекта</a>
|
Если вы знаете, как можно его улучшить, можете перейти на [страницу GitHub репозитория проекта](https://github.com/xfox111/TabsAsideExtension)
|
||||||
|
|
||||||
<a href="https://github.com/xfox111/TabsAsideExtension/releases/latest">Список изменений последней версии</a>
|
[Список изменений последней версии](https://github.com/xfox111/TabsAsideExtension/releases/latest)
|
||||||
|
|||||||
+11
-13
@@ -30,19 +30,17 @@ https://github.com/xfox111/TabsAsideExtension/releases/latest
|
|||||||
|
|
||||||
Воно дозволяє зберігати та керувати вашими вкладками зручно, надаючи безліч функцій, які спрощують організацію та доступ до збережених вкладок.
|
Воно дозволяє зберігати та керувати вашими вкладками зручно, надаючи безліч функцій, які спрощують організацію та доступ до збережених вкладок.
|
||||||
|
|
||||||
<b>Можливості</b>
|
**Можливості**
|
||||||
<ul>
|
- **Збереження вкладок:** Збережіть усі відкриті вкладки одним кліком і відновіть їх пізніше
|
||||||
<li><b>Збереження вкладок</b>: Збережіть усі відкриті вкладки одним кліком і відновіть їх пізніше</li>
|
- **Організація вкладок:** Створюйте колекції та підгрупи для організації збережених вкладок
|
||||||
<li><b>Організація вкладок</b>: Створюйте колекції та підгрупи для організації збережених вкладок</li>
|
- **Пошук вкладок:** Швидко знаходьте потрібні вкладки за допомогою функції пошуку
|
||||||
<li><b>Пошук вкладок</b>: Швидко знаходьте потрібні вкладки за допомогою функції пошуку</li>
|
- **Синхронізація між пристроями:** Доступ до збережених вкладок з будь-якого пристрою через ваш обліковий запис
|
||||||
<li><b>Синхронізація між пристроями</b>: Доступ до збережених вкладок з будь-якого пристрою через ваш обліковий запис</li>
|
- **Темний режим:** Підтримка темного режиму для більш комфортного використання
|
||||||
<li><b>Темний режим</b>: Підтримка темного режиму для більш комфортного використання</li>
|
- **Персоналізація:** Змінюйте зовнішній вигляд і поведінку розширення під свої потреби
|
||||||
<li><b>Персоналізація</b>: Змінюйте зовнішній вигляд і поведінку розширення під свої потреби</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
Відвідайте <a href="https://at.xfox111.net/tabs-aside-3-0">наш блог</a>, щоб дізнатися більше про всі нові функції та покращення у Відкладених вкладках 3.0
|
Відвідайте [наш блог](https://at.xfox111.net/tabs-aside-3-0), щоб дізнатися більше про всі нові функції та покращення у Відкладених вкладках 3.0
|
||||||
|
|
||||||
<b>До речі, це опенсорс розширення!</b>
|
**До речі, це опенсорс розширення!**
|
||||||
Якщо ви знаєте, як покращити це розширення, ви можете відвідати <a href="https://github.com/xfox111/TabsAsideExtension">його репозиторій на GitHub</a>
|
Якщо ви знаєте, як покращити це розширення, ви можете відвідати [його репозиторій на GitHub](https://github.com/xfox111/TabsAsideExtension)
|
||||||
|
|
||||||
<a href="https://github.com/xfox111/TabsAsideExtension/releases/latest">Список змін останньої версії</a>
|
[Список змін останньої версії](https://github.com/xfox111/TabsAsideExtension/releases/latest)
|
||||||
|
|||||||
@@ -30,19 +30,17 @@ https://github.com/xfox111/TabsAsideExtension/releases/latest
|
|||||||
|
|
||||||
它允许您以方便的方式保存和管理标签,提供一系列功能,使您可以轻松组织和访问已保存的标签。
|
它允许您以方便的方式保存和管理标签,提供一系列功能,使您可以轻松组织和访问已保存的标签。
|
||||||
|
|
||||||
<b>功能</b>
|
**功能**
|
||||||
<ul>
|
- **保存标签:** 一键保存所有打开的标签,并稍后恢复
|
||||||
<li><b>保存标签</b>:一键保存所有打开的标签,并稍后恢复</li>
|
- **组织标签:** 创建收藏和子组以组织已保存的标签
|
||||||
<li><b>组织标签</b>:创建收藏和子组以组织已保存的标签</li>
|
- **搜索标签:** 使用搜索功能快速找到所需的标签
|
||||||
<li><b>搜索标签</b>:使用搜索功能快速找到所需的标签</li>
|
- **跨设备同步:** 使用您的帐户从任何设备访问已保存的标签
|
||||||
<li><b>跨设备同步</b>:使用您的帐户从任何设备访问已保存的标签</li>
|
- **深色模式:** 支持深色模式,提供更舒适的浏览体验
|
||||||
<li><b>深色模式</b>:支持深色模式,提供更舒适的浏览体验</li>
|
- **个性化:** 更改扩展的外观和行为以满足您的需求
|
||||||
<li><b>个性化</b>:更改扩展的外观和行为以满足您的需求</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
查看我们关于 <a href="https://at.xfox111.net/tabs-aside-3-0">搁置的标签页 3.0</a> 的所有新功能和改进的<a href="https://at.xfox111.net/tabs-aside-3-0">博客文章</a>
|
查看我们关于 搁置的标签页 3.0 的所有新功能和改进的[博客文章](https://at.xfox111.net/tabs-aside-3-0)
|
||||||
|
|
||||||
<b>嘿,这是一个开源软件!</b>
|
**嘿,这是一个开源软件!**
|
||||||
如果您知道如何改进此扩展,可以查看<a href="https://github.com/xfox111/TabsAsideExtension">其 GitHub 仓库</a>
|
如果您知道如何改进此扩展,可以查看[其 GitHub 仓库](https://github.com/xfox111/TabsAsideExtension)
|
||||||
|
|
||||||
查看<a href="https://github.com/xfox111/TabsAsideExtension/releases/latest">发布更新日志</a>
|
查看[发布更新日志](https://github.com/xfox111/TabsAsideExtension/releases/latest)
|
||||||
|
|||||||
+5
-5
@@ -1,9 +1,9 @@
|
|||||||
{
|
{
|
||||||
"extends": "./.wxt/tsconfig.json",
|
"extends": "./.wxt/tsconfig.json",
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"allowImportingTsExtensions": true,
|
"allowImportingTsExtensions": true,
|
||||||
"jsx": "react-jsx",
|
"jsx": "react-jsx",
|
||||||
"strict": true,
|
"strict": true,
|
||||||
"strictNullChecks": true
|
"strictNullChecks": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,11 @@
|
|||||||
|
export async function closeTabsAsync(tabs: Browser.tabs.Tab[]): Promise<void>
|
||||||
|
{
|
||||||
|
if (tabs.length < 1)
|
||||||
|
return;
|
||||||
|
|
||||||
|
await browser.tabs.create({
|
||||||
|
active: true,
|
||||||
|
windowId: tabs[0].windowId
|
||||||
|
});
|
||||||
|
await browser.tabs.remove(tabs.map(i => i.id!));
|
||||||
|
}
|
||||||
@@ -0,0 +1,83 @@
|
|||||||
|
import { CollectionItem, GroupItem } from "@/models/CollectionModels";
|
||||||
|
|
||||||
|
export async function createCollectionFromTabs(tabs: Browser.tabs.Tab[]): Promise<CollectionItem>
|
||||||
|
{
|
||||||
|
const collection: CollectionItem = {
|
||||||
|
type: "collection",
|
||||||
|
timestamp: Date.now(),
|
||||||
|
items: []
|
||||||
|
};
|
||||||
|
|
||||||
|
if (tabs.length < 1)
|
||||||
|
return collection;
|
||||||
|
|
||||||
|
let tabIndex: number = 0;
|
||||||
|
|
||||||
|
if (tabs[tabIndex].pinned)
|
||||||
|
{
|
||||||
|
collection.items.push({ type: "group", pinned: true, items: [] });
|
||||||
|
|
||||||
|
for (; tabIndex < tabs.length; tabIndex++)
|
||||||
|
{
|
||||||
|
if (!tabs[tabIndex].pinned)
|
||||||
|
break;
|
||||||
|
|
||||||
|
(collection.items[0] as GroupItem).items.push({
|
||||||
|
type: "tab",
|
||||||
|
url: tabs[tabIndex].url!,
|
||||||
|
title: tabs[tabIndex].title
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Special case, if all tabs are in the same group, create a collection with the group title
|
||||||
|
if (tabs[0].groupId && tabs[0].groupId !== -1 &&
|
||||||
|
tabs.every(i => i.groupId === tabs[0].groupId)
|
||||||
|
)
|
||||||
|
{
|
||||||
|
const group = await browser.tabGroups.get(tabs[0].groupId);
|
||||||
|
collection.title = group.title;
|
||||||
|
collection.color = group.color;
|
||||||
|
|
||||||
|
tabs.forEach(i =>
|
||||||
|
collection.items.push({ type: "tab", url: i.url!, title: i.title })
|
||||||
|
);
|
||||||
|
|
||||||
|
return collection;
|
||||||
|
}
|
||||||
|
|
||||||
|
let activeGroup: number | null = null;
|
||||||
|
|
||||||
|
for (; tabIndex < tabs.length; tabIndex++)
|
||||||
|
{
|
||||||
|
const tab = tabs[tabIndex];
|
||||||
|
|
||||||
|
if (!tab.groupId || tab.groupId === -1)
|
||||||
|
{
|
||||||
|
collection.items.push({ type: "tab", url: tab.url!, title: tab.title });
|
||||||
|
activeGroup = null;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!activeGroup || activeGroup !== tab.groupId)
|
||||||
|
{
|
||||||
|
activeGroup = tab.groupId;
|
||||||
|
const group = await browser.tabGroups.get(activeGroup!);
|
||||||
|
|
||||||
|
collection.items.push({
|
||||||
|
type: "group",
|
||||||
|
color: group.color,
|
||||||
|
title: group.title,
|
||||||
|
items: []
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
(collection.items[collection.items.length - 1] as GroupItem).items.push({
|
||||||
|
type: "tab",
|
||||||
|
url: tab.url!,
|
||||||
|
title: tab.title
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
return collection;
|
||||||
|
}
|
||||||
@@ -0,0 +1,30 @@
|
|||||||
|
import { settings } from "./settings";
|
||||||
|
|
||||||
|
export async function getTabsToSaveAsync(): Promise<[Browser.tabs.Tab[], number]>
|
||||||
|
{
|
||||||
|
let tabs: Browser.tabs.Tab[] = await browser.tabs.query({
|
||||||
|
currentWindow: true,
|
||||||
|
highlighted: true
|
||||||
|
});
|
||||||
|
|
||||||
|
if (tabs.length < 2)
|
||||||
|
{
|
||||||
|
const ignorePinned: boolean = await settings.ignorePinned.getValue();
|
||||||
|
tabs = await browser.tabs.query({
|
||||||
|
currentWindow: true,
|
||||||
|
pinned: ignorePinned ? false : undefined
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
const tabsCount: number = tabs.length;
|
||||||
|
const extension_prefix: string = browser.runtime.getURL("/");
|
||||||
|
|
||||||
|
tabs = tabs.filter(i =>
|
||||||
|
i.url
|
||||||
|
&& new URL(i.url).protocol !== "about:"
|
||||||
|
&& new URL(i.url).hostname !== "newtab"
|
||||||
|
&& !i.url!.startsWith(extension_prefix)
|
||||||
|
);
|
||||||
|
|
||||||
|
return [tabs, tabsCount - tabs.length];
|
||||||
|
}
|
||||||
@@ -1,136 +0,0 @@
|
|||||||
import { track } from "@/features/analytics";
|
|
||||||
import { CollectionItem, GroupItem } from "@/models/CollectionModels";
|
|
||||||
import { Tabs } from "wxt/browser";
|
|
||||||
import sendNotification from "./sendNotification";
|
|
||||||
import { settings } from "./settings";
|
|
||||||
|
|
||||||
export default async function saveTabsToCollection(closeTabs: boolean): Promise<CollectionItem>
|
|
||||||
{
|
|
||||||
let tabs: Tabs.Tab[] = await browser.tabs.query({
|
|
||||||
currentWindow: true,
|
|
||||||
highlighted: true
|
|
||||||
});
|
|
||||||
|
|
||||||
if (tabs.length < 2)
|
|
||||||
{
|
|
||||||
const ignorePinned: boolean = await settings.ignorePinned.getValue();
|
|
||||||
tabs = await browser.tabs.query({
|
|
||||||
currentWindow: true,
|
|
||||||
pinned: ignorePinned ? false : undefined
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
const [collection, tabsToClose] = await createCollectionFromTabs(tabs);
|
|
||||||
|
|
||||||
if (closeTabs)
|
|
||||||
{
|
|
||||||
await browser.tabs.create({
|
|
||||||
active: true,
|
|
||||||
windowId: tabs[0].windowId
|
|
||||||
});
|
|
||||||
await browser.tabs.remove(tabsToClose.map(i => i.id!));
|
|
||||||
}
|
|
||||||
|
|
||||||
track(closeTabs ? "set_aside" : "save");
|
|
||||||
|
|
||||||
return collection;
|
|
||||||
}
|
|
||||||
|
|
||||||
async function createCollectionFromTabs(tabs: Tabs.Tab[]): Promise<[CollectionItem, Tabs.Tab[]]>
|
|
||||||
{
|
|
||||||
if (tabs.length < 1)
|
|
||||||
return [{ type: "collection", timestamp: Date.now(), items: [] }, []];
|
|
||||||
|
|
||||||
const tabCount: number = tabs.length;
|
|
||||||
|
|
||||||
tabs = tabs.filter(i =>
|
|
||||||
i.url
|
|
||||||
&& new URL(i.url).protocol !== "about:"
|
|
||||||
&& new URL(i.url).hostname !== "newtab"
|
|
||||||
);
|
|
||||||
|
|
||||||
if (tabs.length < tabCount)
|
|
||||||
await sendNotification({
|
|
||||||
title: i18n.t("notifications.partial_save.title"),
|
|
||||||
message: i18n.t("notifications.partial_save.message"),
|
|
||||||
icon: "/notification_icons/save_warning.png"
|
|
||||||
});
|
|
||||||
|
|
||||||
tabs = tabs.filter(i => !i.url!.startsWith(browser.runtime.getURL("/")));
|
|
||||||
|
|
||||||
const collection: CollectionItem = {
|
|
||||||
type: "collection",
|
|
||||||
timestamp: Date.now(),
|
|
||||||
items: []
|
|
||||||
};
|
|
||||||
|
|
||||||
let tabIndex: number = 0;
|
|
||||||
|
|
||||||
if (tabs[tabIndex].pinned)
|
|
||||||
{
|
|
||||||
collection.items.push({ type: "group", pinned: true, items: [] });
|
|
||||||
|
|
||||||
for (; tabIndex < tabs.length; tabIndex++)
|
|
||||||
{
|
|
||||||
if (!tabs[tabIndex].pinned)
|
|
||||||
break;
|
|
||||||
|
|
||||||
(collection.items[0] as GroupItem).items.push({
|
|
||||||
type: "tab",
|
|
||||||
url: tabs[tabIndex].url!,
|
|
||||||
title: tabs[tabIndex].title
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Special case, if all tabs are in the same group, create a collection with the group title
|
|
||||||
if (tabs[0].groupId && tabs[0].groupId !== -1 &&
|
|
||||||
tabs.every(i => i.groupId === tabs[0].groupId)
|
|
||||||
)
|
|
||||||
{
|
|
||||||
const group = await chrome.tabGroups.get(tabs[0].groupId);
|
|
||||||
collection.title = group.title;
|
|
||||||
collection.color = group.color;
|
|
||||||
|
|
||||||
tabs.forEach(i =>
|
|
||||||
collection.items.push({ type: "tab", url: i.url!, title: i.title })
|
|
||||||
);
|
|
||||||
|
|
||||||
return [collection, tabs];
|
|
||||||
}
|
|
||||||
|
|
||||||
let activeGroup: number | null = null;
|
|
||||||
|
|
||||||
for (; tabIndex < tabs.length; tabIndex++)
|
|
||||||
{
|
|
||||||
const tab = tabs[tabIndex];
|
|
||||||
|
|
||||||
if (!tab.groupId || tab.groupId === -1)
|
|
||||||
{
|
|
||||||
collection.items.push({ type: "tab", url: tab.url!, title: tab.title });
|
|
||||||
activeGroup = null;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!activeGroup || activeGroup !== tab.groupId)
|
|
||||||
{
|
|
||||||
activeGroup = tab.groupId;
|
|
||||||
const group = await chrome.tabGroups.get(activeGroup);
|
|
||||||
|
|
||||||
collection.items.push({
|
|
||||||
type: "group",
|
|
||||||
color: group.color,
|
|
||||||
title: group.title,
|
|
||||||
items: []
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
(collection.items[collection.items.length - 1] as GroupItem).items.push({
|
|
||||||
type: "tab",
|
|
||||||
url: tab.url!,
|
|
||||||
title: tab.title
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
return [collection, tabs];
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
import sendNotification from "./sendNotification";
|
||||||
|
import { settings } from "./settings";
|
||||||
|
|
||||||
|
export default async function sendPartialSaveNotification(): Promise<void>
|
||||||
|
{
|
||||||
|
if (await settings.showPartialSaveNotification.getValue())
|
||||||
|
await sendNotification({
|
||||||
|
title: i18n.t("notifications.partial_save.title"),
|
||||||
|
message: i18n.t("notifications.partial_save.message"),
|
||||||
|
icon: "/notification_icons/save_warning.png"
|
||||||
|
});
|
||||||
|
}
|
||||||
@@ -95,5 +95,13 @@ export const settings = {
|
|||||||
fallback: true,
|
fallback: true,
|
||||||
version: 1
|
version: 1
|
||||||
}
|
}
|
||||||
|
),
|
||||||
|
|
||||||
|
showPartialSaveNotification: storage.defineItem<boolean>(
|
||||||
|
"sync:showPartialSaveNotification",
|
||||||
|
{
|
||||||
|
fallback: true,
|
||||||
|
version: 1
|
||||||
|
}
|
||||||
)
|
)
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import { Unwatch } from "wxt/storage";
|
import { Unwatch } from "wxt/utils/storage";
|
||||||
|
|
||||||
export default function watchTabSelection(onChange: TabSelectChangeHandler): Unwatch
|
export default function watchTabSelection(onChange: TabSelectChangeHandler): Unwatch
|
||||||
{
|
{
|
||||||
|
|||||||
+15
-4
@@ -2,7 +2,7 @@ import { ConfigEnv, defineConfig, UserManifest } from "wxt";
|
|||||||
|
|
||||||
// See https://wxt.dev/api/config.html
|
// See https://wxt.dev/api/config.html
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
modules: ["@wxt-dev/module-react", "@wxt-dev/i18n/module", "@wxt-dev/analytics/module"],
|
modules: ["@wxt-dev/module-react", "@wxt-dev/i18n/module"],
|
||||||
vite: () => ({
|
vite: () => ({
|
||||||
build:
|
build:
|
||||||
{
|
{
|
||||||
@@ -37,10 +37,15 @@ export default defineConfig({
|
|||||||
"tabs",
|
"tabs",
|
||||||
"notifications",
|
"notifications",
|
||||||
"contextMenus",
|
"contextMenus",
|
||||||
"bookmarks",
|
|
||||||
"tabGroups"
|
"tabGroups"
|
||||||
],
|
],
|
||||||
|
|
||||||
|
optional_permissions:
|
||||||
|
[
|
||||||
|
"bookmarks",
|
||||||
|
"scripting"
|
||||||
|
],
|
||||||
|
|
||||||
commands:
|
commands:
|
||||||
{
|
{
|
||||||
show_collections:
|
show_collections:
|
||||||
@@ -71,7 +76,7 @@ export default defineConfig({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
host_permissions: ["<all_urls>"]
|
optional_host_permissions: ["<all_urls>"]
|
||||||
};
|
};
|
||||||
|
|
||||||
if (browser === "firefox")
|
if (browser === "firefox")
|
||||||
@@ -80,7 +85,13 @@ export default defineConfig({
|
|||||||
gecko:
|
gecko:
|
||||||
{
|
{
|
||||||
id: "tabsaside@xfox111.net",
|
id: "tabsaside@xfox111.net",
|
||||||
strict_min_version: "139.0"
|
strict_min_version: "139.0",
|
||||||
|
|
||||||
|
// @ts-expect-error Introduced in Firefox 139
|
||||||
|
data_collection_permissions: {
|
||||||
|
required: ["browsingActivity"],
|
||||||
|
optional: ["technicalAndInteraction"]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user