linkfeed-pro 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/settings.local.json +9 -0
- package/.output/chrome-mv3/_locales/de/messages.json +214 -0
- package/.output/chrome-mv3/_locales/en/messages.json +214 -0
- package/.output/chrome-mv3/_locales/es/messages.json +214 -0
- package/.output/chrome-mv3/_locales/fr/messages.json +214 -0
- package/.output/chrome-mv3/_locales/hi/messages.json +214 -0
- package/.output/chrome-mv3/_locales/id/messages.json +214 -0
- package/.output/chrome-mv3/_locales/it/messages.json +214 -0
- package/.output/chrome-mv3/_locales/nl/messages.json +214 -0
- package/.output/chrome-mv3/_locales/pl/messages.json +214 -0
- package/.output/chrome-mv3/_locales/pt_BR/messages.json +214 -0
- package/.output/chrome-mv3/_locales/pt_PT/messages.json +214 -0
- package/.output/chrome-mv3/_locales/tr/messages.json +214 -0
- package/.output/chrome-mv3/assets/popup-Z_g1HFs5.css +1 -0
- package/.output/chrome-mv3/background.js +42 -0
- package/.output/chrome-mv3/chunks/popup-IxiPwS1E.js +42 -0
- package/.output/chrome-mv3/content-scripts/content.js +179 -0
- package/.output/chrome-mv3/icon-128.png +0 -0
- package/.output/chrome-mv3/icon-16.png +0 -0
- package/.output/chrome-mv3/icon-48.png +0 -0
- package/.output/chrome-mv3/icon.svg +9 -0
- package/.output/chrome-mv3/manifest.json +1 -0
- package/.output/chrome-mv3/popup.html +247 -0
- package/.wxt/eslint-auto-imports.mjs +56 -0
- package/.wxt/tsconfig.json +28 -0
- package/.wxt/types/globals.d.ts +15 -0
- package/.wxt/types/i18n.d.ts +593 -0
- package/.wxt/types/imports-module.d.ts +20 -0
- package/.wxt/types/imports.d.ts +50 -0
- package/.wxt/types/paths.d.ts +32 -0
- package/.wxt/wxt.d.ts +7 -0
- package/entrypoints/background.ts +112 -0
- package/entrypoints/content.ts +656 -0
- package/entrypoints/popup/main.ts +452 -0
- package/entrypoints/popup/modules/auth-modal.ts +219 -0
- package/entrypoints/popup/modules/settings.ts +78 -0
- package/entrypoints/popup/modules/ui-state.ts +95 -0
- package/entrypoints/popup/style.css +844 -0
- package/entrypoints/popup.html +261 -0
- package/lib/constants.ts +9 -0
- package/lib/device-meta.ts +173 -0
- package/lib/i18n.ts +201 -0
- package/lib/license.ts +470 -0
- package/lib/selectors.ts +24 -0
- package/lib/storage.ts +95 -0
- package/lib/telemetry.ts +94 -0
- package/package.json +30 -0
- package/public/_locales/de/messages.json +214 -0
- package/public/_locales/en/messages.json +214 -0
- package/public/_locales/es/messages.json +214 -0
- package/public/_locales/fr/messages.json +214 -0
- package/public/_locales/hi/messages.json +214 -0
- package/public/_locales/id/messages.json +214 -0
- package/public/_locales/it/messages.json +214 -0
- package/public/_locales/nl/messages.json +214 -0
- package/public/_locales/pl/messages.json +214 -0
- package/public/_locales/pt_BR/messages.json +214 -0
- package/public/_locales/pt_PT/messages.json +214 -0
- package/public/_locales/tr/messages.json +214 -0
- package/public/icon-128.png +0 -0
- package/public/icon-16.png +0 -0
- package/public/icon-48.png +0 -0
- package/public/icon.svg +9 -0
- package/tsconfig.json +3 -0
- package/wxt.config.ts +50 -0
package/wxt.config.ts
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { defineConfig } from "wxt";
|
|
2
|
+
|
|
3
|
+
export default defineConfig({
|
|
4
|
+
manifest: ({ mode, browser }) => ({
|
|
5
|
+
name: "__MSG_extensionName__",
|
|
6
|
+
description: "__MSG_extensionDescription__",
|
|
7
|
+
default_locale: "en",
|
|
8
|
+
permissions: ["storage", "alarms"],
|
|
9
|
+
host_permissions: [
|
|
10
|
+
"https://linkfeed.pro/*",
|
|
11
|
+
"https://extension.report/*",
|
|
12
|
+
...(mode === "development" ? ["http://localhost:3000/*"] : []),
|
|
13
|
+
],
|
|
14
|
+
// Firefox-specific settings
|
|
15
|
+
...(browser === "firefox" && {
|
|
16
|
+
browser_specific_settings: {
|
|
17
|
+
gecko: {
|
|
18
|
+
id: "cedric@linkfeed.pro",
|
|
19
|
+
data_collection_permissions: {
|
|
20
|
+
required: ["personallyIdentifyingInfo"],
|
|
21
|
+
optional: ["technicalAndInteraction"],
|
|
22
|
+
},
|
|
23
|
+
},
|
|
24
|
+
},
|
|
25
|
+
privacy_policy_url: "https://linkfeed.pro/privacy",
|
|
26
|
+
}),
|
|
27
|
+
// externally_connectable is Chrome-only
|
|
28
|
+
...(browser !== "firefox" && {
|
|
29
|
+
externally_connectable: {
|
|
30
|
+
matches: [
|
|
31
|
+
"https://linkfeed.pro/*",
|
|
32
|
+
...(mode === "development" ? ["http://localhost:3000/*"] : []),
|
|
33
|
+
],
|
|
34
|
+
},
|
|
35
|
+
}),
|
|
36
|
+
homepage_url: "https://linkfeed.pro",
|
|
37
|
+
icons: {
|
|
38
|
+
16: "icon-16.png",
|
|
39
|
+
48: "icon-48.png",
|
|
40
|
+
128: "icon-128.png",
|
|
41
|
+
},
|
|
42
|
+
action: {
|
|
43
|
+
default_icon: {
|
|
44
|
+
16: "icon-16.png",
|
|
45
|
+
48: "icon-48.png",
|
|
46
|
+
128: "icon-128.png",
|
|
47
|
+
},
|
|
48
|
+
},
|
|
49
|
+
}),
|
|
50
|
+
});
|