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
|
@@ -0,0 +1,214 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extensionName": {
|
|
3
|
+
"message": "LinkFeed Pro"
|
|
4
|
+
},
|
|
5
|
+
"extensionDescription": {
|
|
6
|
+
"message": "Uma experiência do LinkedIn mais limpa e sem distrações"
|
|
7
|
+
},
|
|
8
|
+
"statusFree": {
|
|
9
|
+
"message": "Grátis"
|
|
10
|
+
},
|
|
11
|
+
"statusTrial": {
|
|
12
|
+
"message": "Teste"
|
|
13
|
+
},
|
|
14
|
+
"statusPro": {
|
|
15
|
+
"message": "Pro"
|
|
16
|
+
},
|
|
17
|
+
"statusExpired": {
|
|
18
|
+
"message": "Expirado"
|
|
19
|
+
},
|
|
20
|
+
"upgradeToPremium": {
|
|
21
|
+
"message": "Fazer upgrade para Premium"
|
|
22
|
+
},
|
|
23
|
+
"licensedTo": {
|
|
24
|
+
"message": "Licenciado para $EMAIL$",
|
|
25
|
+
"placeholders": {
|
|
26
|
+
"email": {
|
|
27
|
+
"content": "$1"
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"trialExpiresIn": {
|
|
32
|
+
"message": "Seu teste termina em $TIME$",
|
|
33
|
+
"placeholders": {
|
|
34
|
+
"time": {
|
|
35
|
+
"content": "$1"
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"trialExpiredBadge": {
|
|
40
|
+
"message": "Teste expirado - clique nos recursos para fazer upgrade"
|
|
41
|
+
},
|
|
42
|
+
"removeSidebars": {
|
|
43
|
+
"message": "Hide Side Bar"
|
|
44
|
+
},
|
|
45
|
+
"hideStartPost": {
|
|
46
|
+
"message": "Hide 'Start Post'"
|
|
47
|
+
},
|
|
48
|
+
"hideMessenger": {
|
|
49
|
+
"message": "Hide Messenger"
|
|
50
|
+
},
|
|
51
|
+
"autoExpandPosts": {
|
|
52
|
+
"message": "Expandir publicações automaticamente"
|
|
53
|
+
},
|
|
54
|
+
"textSize": {
|
|
55
|
+
"message": "Tamanho do texto"
|
|
56
|
+
},
|
|
57
|
+
"feedWidth": {
|
|
58
|
+
"message": "Largura do feed"
|
|
59
|
+
},
|
|
60
|
+
"unlockProTitle": {
|
|
61
|
+
"message": "Desbloquear recursos Pro"
|
|
62
|
+
},
|
|
63
|
+
"unlockProDesc": {
|
|
64
|
+
"message": "Digite seu e-mail para vincular este dispositivo."
|
|
65
|
+
},
|
|
66
|
+
"sending": {
|
|
67
|
+
"message": "Enviando..."
|
|
68
|
+
},
|
|
69
|
+
"emailPlaceholder": {
|
|
70
|
+
"message": "Digite seu e-mail"
|
|
71
|
+
},
|
|
72
|
+
"checkEmailTitle": {
|
|
73
|
+
"message": "Verifique seu e-mail"
|
|
74
|
+
},
|
|
75
|
+
"checkEmailDesc": {
|
|
76
|
+
"message": "Enviamos um link de confirmação para $EMAIL$. Clique para ativar.",
|
|
77
|
+
"placeholders": {
|
|
78
|
+
"email": {
|
|
79
|
+
"content": "$1"
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
"verifyBtn": {
|
|
84
|
+
"message": "Já cliquei no link"
|
|
85
|
+
},
|
|
86
|
+
"verifying": {
|
|
87
|
+
"message": "Verificando..."
|
|
88
|
+
},
|
|
89
|
+
"differentEmail": {
|
|
90
|
+
"message": "Usar outro e-mail"
|
|
91
|
+
},
|
|
92
|
+
"expiredTitle": {
|
|
93
|
+
"message": "Teste expirado"
|
|
94
|
+
},
|
|
95
|
+
"expiredDesc": {
|
|
96
|
+
"message": "Para usar recursos Pro, faça upgrade."
|
|
97
|
+
},
|
|
98
|
+
"upgradeBtn": {
|
|
99
|
+
"message": "See Plans"
|
|
100
|
+
},
|
|
101
|
+
"errorInvalidEmail": {
|
|
102
|
+
"message": "Digite um endereço de e-mail válido"
|
|
103
|
+
},
|
|
104
|
+
"errorNoInternet": {
|
|
105
|
+
"message": "Sem conexão com a internet. Conecte-se e tente novamente."
|
|
106
|
+
},
|
|
107
|
+
"errorServerInvalid": {
|
|
108
|
+
"message": "Resposta inválida do servidor"
|
|
109
|
+
},
|
|
110
|
+
"errorConnectFailed": {
|
|
111
|
+
"message": "Falha ao conectar com o servidor. Tente novamente."
|
|
112
|
+
},
|
|
113
|
+
"hideNavBar": {
|
|
114
|
+
"message": "Hide Navigation Bar"
|
|
115
|
+
},
|
|
116
|
+
"powerToggleTitle": {
|
|
117
|
+
"message": "Ativar/Desativar todas as funcionalidades"
|
|
118
|
+
},
|
|
119
|
+
"settingsButtonTitle": {
|
|
120
|
+
"message": "Configurações"
|
|
121
|
+
},
|
|
122
|
+
"settingsPageTitle": {
|
|
123
|
+
"message": "Configurações"
|
|
124
|
+
},
|
|
125
|
+
"settingsLanguageLabel": {
|
|
126
|
+
"message": "Idioma"
|
|
127
|
+
},
|
|
128
|
+
"settingsLanguageHelp": {
|
|
129
|
+
"message": "Forçar o idioma do pop-up. Automático segue o idioma do navegador."
|
|
130
|
+
},
|
|
131
|
+
"languageAutoOption": {
|
|
132
|
+
"message": "Automático (navegador)"
|
|
133
|
+
},
|
|
134
|
+
"genericYou": {
|
|
135
|
+
"message": "você"
|
|
136
|
+
},
|
|
137
|
+
"expiredShort": {
|
|
138
|
+
"message": "Expirado"
|
|
139
|
+
},
|
|
140
|
+
"unitDay": {
|
|
141
|
+
"message": "dia"
|
|
142
|
+
},
|
|
143
|
+
"unitDays": {
|
|
144
|
+
"message": "dias"
|
|
145
|
+
},
|
|
146
|
+
"unitHour": {
|
|
147
|
+
"message": "hora"
|
|
148
|
+
},
|
|
149
|
+
"unitHours": {
|
|
150
|
+
"message": "horas"
|
|
151
|
+
},
|
|
152
|
+
"settingsSubscriptionTitle": {
|
|
153
|
+
"message": "Assinatura"
|
|
154
|
+
},
|
|
155
|
+
"settingsSubscriptionStatusLabel": {
|
|
156
|
+
"message": "Status"
|
|
157
|
+
},
|
|
158
|
+
"settingsSubscriptionStatusFree": {
|
|
159
|
+
"message": "Grátis"
|
|
160
|
+
},
|
|
161
|
+
"settingsSubscriptionStatusTrial": {
|
|
162
|
+
"message": "Teste"
|
|
163
|
+
},
|
|
164
|
+
"settingsSubscriptionStatusLifetime": {
|
|
165
|
+
"message": "Pro"
|
|
166
|
+
},
|
|
167
|
+
"settingsSubscriptionFreeDetail": {
|
|
168
|
+
"message": "Plano grátis"
|
|
169
|
+
},
|
|
170
|
+
"settingsSubscriptionLifetimeDetail": {
|
|
171
|
+
"message": "Pro unlocked"
|
|
172
|
+
},
|
|
173
|
+
"settingsSubscriptionTrialDetail": {
|
|
174
|
+
"message": "Restam $HOURS$h no teste",
|
|
175
|
+
"placeholders": {
|
|
176
|
+
"hours": {
|
|
177
|
+
"content": "$1"
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
},
|
|
181
|
+
"settingsAccountButton": {
|
|
182
|
+
"message": "Minha conta"
|
|
183
|
+
},
|
|
184
|
+
"settingsUpgradeButton": {
|
|
185
|
+
"message": "Fazer upgrade agora"
|
|
186
|
+
},
|
|
187
|
+
"settingsCheckoutLoading": {
|
|
188
|
+
"message": "Redirecionando..."
|
|
189
|
+
},
|
|
190
|
+
"settingsCheckoutFallback": {
|
|
191
|
+
"message": "Checkout indisponível, fallback aberto"
|
|
192
|
+
},
|
|
193
|
+
"settingsVersionLabel": {
|
|
194
|
+
"message": "Versão"
|
|
195
|
+
},
|
|
196
|
+
"sendLink": {
|
|
197
|
+
"message": "Enviar link mágico"
|
|
198
|
+
},
|
|
199
|
+
"displayButtonTitle": {
|
|
200
|
+
"message": "Display"
|
|
201
|
+
},
|
|
202
|
+
"hideRemovedFeedCards": {
|
|
203
|
+
"message": "Hide 'Post Removed'"
|
|
204
|
+
},
|
|
205
|
+
"hideButtonTitle": {
|
|
206
|
+
"message": "Hide"
|
|
207
|
+
},
|
|
208
|
+
"hidePromoted": {
|
|
209
|
+
"message": "Hide 'Promoted'"
|
|
210
|
+
},
|
|
211
|
+
"postSpacing": {
|
|
212
|
+
"message": "Post Spacing"
|
|
213
|
+
}
|
|
214
|
+
}
|
|
@@ -0,0 +1,214 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extensionName": {
|
|
3
|
+
"message": "LinkFeed Pro"
|
|
4
|
+
},
|
|
5
|
+
"extensionDescription": {
|
|
6
|
+
"message": "Uma experiência do LinkedIn mais limpa e sem distrações"
|
|
7
|
+
},
|
|
8
|
+
"statusFree": {
|
|
9
|
+
"message": "Grátis"
|
|
10
|
+
},
|
|
11
|
+
"statusTrial": {
|
|
12
|
+
"message": "Teste"
|
|
13
|
+
},
|
|
14
|
+
"statusPro": {
|
|
15
|
+
"message": "Pro"
|
|
16
|
+
},
|
|
17
|
+
"statusExpired": {
|
|
18
|
+
"message": "Expirado"
|
|
19
|
+
},
|
|
20
|
+
"upgradeToPremium": {
|
|
21
|
+
"message": "Fazer upgrade para Premium"
|
|
22
|
+
},
|
|
23
|
+
"licensedTo": {
|
|
24
|
+
"message": "Licenciado para $EMAIL$",
|
|
25
|
+
"placeholders": {
|
|
26
|
+
"email": {
|
|
27
|
+
"content": "$1"
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"trialExpiresIn": {
|
|
32
|
+
"message": "O teste termina em $TIME$",
|
|
33
|
+
"placeholders": {
|
|
34
|
+
"time": {
|
|
35
|
+
"content": "$1"
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"trialExpiredBadge": {
|
|
40
|
+
"message": "Teste expirado - clique nas funcionalidades para fazer upgrade"
|
|
41
|
+
},
|
|
42
|
+
"removeSidebars": {
|
|
43
|
+
"message": "Hide Side Bar"
|
|
44
|
+
},
|
|
45
|
+
"hideStartPost": {
|
|
46
|
+
"message": "Hide 'Start Post'"
|
|
47
|
+
},
|
|
48
|
+
"hideMessenger": {
|
|
49
|
+
"message": "Hide Messenger"
|
|
50
|
+
},
|
|
51
|
+
"autoExpandPosts": {
|
|
52
|
+
"message": "Expandir publicações automaticamente"
|
|
53
|
+
},
|
|
54
|
+
"textSize": {
|
|
55
|
+
"message": "Tamanho do texto"
|
|
56
|
+
},
|
|
57
|
+
"feedWidth": {
|
|
58
|
+
"message": "Largura do feed"
|
|
59
|
+
},
|
|
60
|
+
"unlockProTitle": {
|
|
61
|
+
"message": "Desbloquear funcionalidades Pro"
|
|
62
|
+
},
|
|
63
|
+
"unlockProDesc": {
|
|
64
|
+
"message": "Introduza o seu e-mail para associar este dispositivo."
|
|
65
|
+
},
|
|
66
|
+
"sending": {
|
|
67
|
+
"message": "A enviar..."
|
|
68
|
+
},
|
|
69
|
+
"emailPlaceholder": {
|
|
70
|
+
"message": "Introduza o seu e-mail"
|
|
71
|
+
},
|
|
72
|
+
"checkEmailTitle": {
|
|
73
|
+
"message": "Verifique o seu e-mail"
|
|
74
|
+
},
|
|
75
|
+
"checkEmailDesc": {
|
|
76
|
+
"message": "Enviámos um link de confirmação para $EMAIL$. Clique para ativar.",
|
|
77
|
+
"placeholders": {
|
|
78
|
+
"email": {
|
|
79
|
+
"content": "$1"
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
"verifyBtn": {
|
|
84
|
+
"message": "Já cliquei no link"
|
|
85
|
+
},
|
|
86
|
+
"verifying": {
|
|
87
|
+
"message": "A verificar..."
|
|
88
|
+
},
|
|
89
|
+
"differentEmail": {
|
|
90
|
+
"message": "Usar outro e-mail"
|
|
91
|
+
},
|
|
92
|
+
"expiredTitle": {
|
|
93
|
+
"message": "Teste expirado"
|
|
94
|
+
},
|
|
95
|
+
"expiredDesc": {
|
|
96
|
+
"message": "Para usar funcionalidades Pro, faça upgrade."
|
|
97
|
+
},
|
|
98
|
+
"upgradeBtn": {
|
|
99
|
+
"message": "See Plans"
|
|
100
|
+
},
|
|
101
|
+
"errorInvalidEmail": {
|
|
102
|
+
"message": "Introduza um endereço de e-mail válido"
|
|
103
|
+
},
|
|
104
|
+
"errorNoInternet": {
|
|
105
|
+
"message": "Sem conexão com a internet. Conecte-se e tente novamente."
|
|
106
|
+
},
|
|
107
|
+
"errorServerInvalid": {
|
|
108
|
+
"message": "Resposta inválida do servidor"
|
|
109
|
+
},
|
|
110
|
+
"errorConnectFailed": {
|
|
111
|
+
"message": "Falha ao conectar com o servidor. Tente novamente."
|
|
112
|
+
},
|
|
113
|
+
"hideNavBar": {
|
|
114
|
+
"message": "Hide Navigation Bar"
|
|
115
|
+
},
|
|
116
|
+
"powerToggleTitle": {
|
|
117
|
+
"message": "Ativar/Desativar todas as funcionalidades"
|
|
118
|
+
},
|
|
119
|
+
"settingsButtonTitle": {
|
|
120
|
+
"message": "Definições"
|
|
121
|
+
},
|
|
122
|
+
"settingsPageTitle": {
|
|
123
|
+
"message": "Definições"
|
|
124
|
+
},
|
|
125
|
+
"settingsLanguageLabel": {
|
|
126
|
+
"message": "Idioma"
|
|
127
|
+
},
|
|
128
|
+
"settingsLanguageHelp": {
|
|
129
|
+
"message": "Forçar o idioma do popup. Automático segue o idioma do navegador."
|
|
130
|
+
},
|
|
131
|
+
"languageAutoOption": {
|
|
132
|
+
"message": "Automático (navegador)"
|
|
133
|
+
},
|
|
134
|
+
"genericYou": {
|
|
135
|
+
"message": "você"
|
|
136
|
+
},
|
|
137
|
+
"expiredShort": {
|
|
138
|
+
"message": "Expirado"
|
|
139
|
+
},
|
|
140
|
+
"unitDay": {
|
|
141
|
+
"message": "dia"
|
|
142
|
+
},
|
|
143
|
+
"unitDays": {
|
|
144
|
+
"message": "dias"
|
|
145
|
+
},
|
|
146
|
+
"unitHour": {
|
|
147
|
+
"message": "hora"
|
|
148
|
+
},
|
|
149
|
+
"unitHours": {
|
|
150
|
+
"message": "horas"
|
|
151
|
+
},
|
|
152
|
+
"settingsSubscriptionTitle": {
|
|
153
|
+
"message": "Subscrição"
|
|
154
|
+
},
|
|
155
|
+
"settingsSubscriptionStatusLabel": {
|
|
156
|
+
"message": "Estado"
|
|
157
|
+
},
|
|
158
|
+
"settingsSubscriptionStatusFree": {
|
|
159
|
+
"message": "Grátis"
|
|
160
|
+
},
|
|
161
|
+
"settingsSubscriptionStatusTrial": {
|
|
162
|
+
"message": "Teste"
|
|
163
|
+
},
|
|
164
|
+
"settingsSubscriptionStatusLifetime": {
|
|
165
|
+
"message": "Pro"
|
|
166
|
+
},
|
|
167
|
+
"settingsSubscriptionFreeDetail": {
|
|
168
|
+
"message": "Plano grátis"
|
|
169
|
+
},
|
|
170
|
+
"settingsSubscriptionLifetimeDetail": {
|
|
171
|
+
"message": "Pro unlocked"
|
|
172
|
+
},
|
|
173
|
+
"settingsSubscriptionTrialDetail": {
|
|
174
|
+
"message": "Faltam $HOURS$h no teste",
|
|
175
|
+
"placeholders": {
|
|
176
|
+
"hours": {
|
|
177
|
+
"content": "$1"
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
},
|
|
181
|
+
"settingsAccountButton": {
|
|
182
|
+
"message": "A minha conta"
|
|
183
|
+
},
|
|
184
|
+
"settingsUpgradeButton": {
|
|
185
|
+
"message": "Fazer upgrade agora"
|
|
186
|
+
},
|
|
187
|
+
"settingsCheckoutLoading": {
|
|
188
|
+
"message": "A redirecionar..."
|
|
189
|
+
},
|
|
190
|
+
"settingsCheckoutFallback": {
|
|
191
|
+
"message": "Checkout indisponível, abriu-se alternativa"
|
|
192
|
+
},
|
|
193
|
+
"settingsVersionLabel": {
|
|
194
|
+
"message": "Versão"
|
|
195
|
+
},
|
|
196
|
+
"sendLink": {
|
|
197
|
+
"message": "Enviar link mágico"
|
|
198
|
+
},
|
|
199
|
+
"displayButtonTitle": {
|
|
200
|
+
"message": "Display"
|
|
201
|
+
},
|
|
202
|
+
"hideRemovedFeedCards": {
|
|
203
|
+
"message": "Hide 'Post Removed'"
|
|
204
|
+
},
|
|
205
|
+
"hideButtonTitle": {
|
|
206
|
+
"message": "Hide"
|
|
207
|
+
},
|
|
208
|
+
"hidePromoted": {
|
|
209
|
+
"message": "Hide 'Promoted'"
|
|
210
|
+
},
|
|
211
|
+
"postSpacing": {
|
|
212
|
+
"message": "Post Spacing"
|
|
213
|
+
}
|
|
214
|
+
}
|
|
@@ -0,0 +1,214 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extensionName": {
|
|
3
|
+
"message": "LinkFeed Pro"
|
|
4
|
+
},
|
|
5
|
+
"extensionDescription": {
|
|
6
|
+
"message": "Daha temiz, dikkat dağıtıcı olmayan bir LinkedIn deneyimi"
|
|
7
|
+
},
|
|
8
|
+
"statusFree": {
|
|
9
|
+
"message": "Ücretsiz"
|
|
10
|
+
},
|
|
11
|
+
"statusTrial": {
|
|
12
|
+
"message": "Deneme"
|
|
13
|
+
},
|
|
14
|
+
"statusPro": {
|
|
15
|
+
"message": "Profesyonel"
|
|
16
|
+
},
|
|
17
|
+
"statusExpired": {
|
|
18
|
+
"message": "Süresi doldu"
|
|
19
|
+
},
|
|
20
|
+
"upgradeToPremium": {
|
|
21
|
+
"message": "Premium'a Yükselt"
|
|
22
|
+
},
|
|
23
|
+
"licensedTo": {
|
|
24
|
+
"message": "$EMAIL$'ye lisanslıdır",
|
|
25
|
+
"placeholders": {
|
|
26
|
+
"email": {
|
|
27
|
+
"content": "$1"
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"trialExpiresIn": {
|
|
32
|
+
"message": "Deneme $TIME$ tarihinde sona eriyor",
|
|
33
|
+
"placeholders": {
|
|
34
|
+
"time": {
|
|
35
|
+
"content": "$1"
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"trialExpiredBadge": {
|
|
40
|
+
"message": "Deneme Süresi Sona Erdi - Yükseltmek için özelliklere tıklayın"
|
|
41
|
+
},
|
|
42
|
+
"removeSidebars": {
|
|
43
|
+
"message": "Hide Side Bar"
|
|
44
|
+
},
|
|
45
|
+
"hideStartPost": {
|
|
46
|
+
"message": "Hide 'Start Post'"
|
|
47
|
+
},
|
|
48
|
+
"hideMessenger": {
|
|
49
|
+
"message": "Hide Messenger"
|
|
50
|
+
},
|
|
51
|
+
"autoExpandPosts": {
|
|
52
|
+
"message": "Gönderileri Otomatik Genişlet"
|
|
53
|
+
},
|
|
54
|
+
"textSize": {
|
|
55
|
+
"message": "Metin Boyutu"
|
|
56
|
+
},
|
|
57
|
+
"feedWidth": {
|
|
58
|
+
"message": "Akış Genişliği"
|
|
59
|
+
},
|
|
60
|
+
"unlockProTitle": {
|
|
61
|
+
"message": "Pro Özelliklerinin Kilidini Açın"
|
|
62
|
+
},
|
|
63
|
+
"unlockProDesc": {
|
|
64
|
+
"message": "Bu cihazı bağlamak için e-postanızı girin."
|
|
65
|
+
},
|
|
66
|
+
"sending": {
|
|
67
|
+
"message": "Gönderiliyor..."
|
|
68
|
+
},
|
|
69
|
+
"emailPlaceholder": {
|
|
70
|
+
"message": "E-postanızı girin"
|
|
71
|
+
},
|
|
72
|
+
"checkEmailTitle": {
|
|
73
|
+
"message": "E-postanızı Kontrol Edin"
|
|
74
|
+
},
|
|
75
|
+
"checkEmailDesc": {
|
|
76
|
+
"message": "$EMAIL$'ye bir onay bağlantısı gönderdik. Etkinleştirmek için tıklayın.",
|
|
77
|
+
"placeholders": {
|
|
78
|
+
"email": {
|
|
79
|
+
"content": "$1"
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
"verifyBtn": {
|
|
84
|
+
"message": "Bağlantıya tıkladım"
|
|
85
|
+
},
|
|
86
|
+
"verifying": {
|
|
87
|
+
"message": "Kontrol ediliyor..."
|
|
88
|
+
},
|
|
89
|
+
"differentEmail": {
|
|
90
|
+
"message": "Farklı bir e-posta kullanın"
|
|
91
|
+
},
|
|
92
|
+
"expiredTitle": {
|
|
93
|
+
"message": "Deneme Süresi Sona Erdi"
|
|
94
|
+
},
|
|
95
|
+
"expiredDesc": {
|
|
96
|
+
"message": "Pro özelliklerini kullanmak için lütfen yükseltin."
|
|
97
|
+
},
|
|
98
|
+
"upgradeBtn": {
|
|
99
|
+
"message": "See Plans"
|
|
100
|
+
},
|
|
101
|
+
"errorInvalidEmail": {
|
|
102
|
+
"message": "Geçerli bir e-posta adresi girin"
|
|
103
|
+
},
|
|
104
|
+
"errorNoInternet": {
|
|
105
|
+
"message": "İnternet bağlantısı yok. Lütfen bağlanın ve tekrar deneyin."
|
|
106
|
+
},
|
|
107
|
+
"errorServerInvalid": {
|
|
108
|
+
"message": "Sunucudan geçersiz yanıt"
|
|
109
|
+
},
|
|
110
|
+
"errorConnectFailed": {
|
|
111
|
+
"message": "Sunucuya bağlanılamadı. Lütfen tekrar deneyin."
|
|
112
|
+
},
|
|
113
|
+
"hideNavBar": {
|
|
114
|
+
"message": "Hide Navigation Bar"
|
|
115
|
+
},
|
|
116
|
+
"powerToggleTitle": {
|
|
117
|
+
"message": "Tüm özellikleri Etkinleştir/Devre Dışı Bırak"
|
|
118
|
+
},
|
|
119
|
+
"settingsButtonTitle": {
|
|
120
|
+
"message": "Ayarlar"
|
|
121
|
+
},
|
|
122
|
+
"settingsPageTitle": {
|
|
123
|
+
"message": "Ayarlar"
|
|
124
|
+
},
|
|
125
|
+
"settingsLanguageLabel": {
|
|
126
|
+
"message": "Dil"
|
|
127
|
+
},
|
|
128
|
+
"settingsLanguageHelp": {
|
|
129
|
+
"message": "Açılır dili zorlayın. Otomatik olarak tarayıcınızın dilini takip eder."
|
|
130
|
+
},
|
|
131
|
+
"settingsSubscriptionTitle": {
|
|
132
|
+
"message": "Abonelik"
|
|
133
|
+
},
|
|
134
|
+
"settingsSubscriptionStatusLabel": {
|
|
135
|
+
"message": "Durum"
|
|
136
|
+
},
|
|
137
|
+
"settingsSubscriptionStatusFree": {
|
|
138
|
+
"message": "Ücretsiz"
|
|
139
|
+
},
|
|
140
|
+
"settingsSubscriptionStatusTrial": {
|
|
141
|
+
"message": "Deneme"
|
|
142
|
+
},
|
|
143
|
+
"settingsSubscriptionStatusLifetime": {
|
|
144
|
+
"message": "Pro"
|
|
145
|
+
},
|
|
146
|
+
"settingsSubscriptionFreeDetail": {
|
|
147
|
+
"message": "Ücretsiz plan"
|
|
148
|
+
},
|
|
149
|
+
"settingsSubscriptionLifetimeDetail": {
|
|
150
|
+
"message": "Pro unlocked"
|
|
151
|
+
},
|
|
152
|
+
"settingsSubscriptionTrialDetail": {
|
|
153
|
+
"message": "Denemede $HOURS$s kaldı",
|
|
154
|
+
"placeholders": {
|
|
155
|
+
"hours": {
|
|
156
|
+
"content": "$1"
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
},
|
|
160
|
+
"settingsAccountButton": {
|
|
161
|
+
"message": "Hesabım"
|
|
162
|
+
},
|
|
163
|
+
"settingsUpgradeButton": {
|
|
164
|
+
"message": "Şimdi yükseltin"
|
|
165
|
+
},
|
|
166
|
+
"settingsCheckoutLoading": {
|
|
167
|
+
"message": "Yönlendiriliyor..."
|
|
168
|
+
},
|
|
169
|
+
"settingsCheckoutFallback": {
|
|
170
|
+
"message": "Ödeme kullanılamıyor, yedek açıldı"
|
|
171
|
+
},
|
|
172
|
+
"settingsVersionLabel": {
|
|
173
|
+
"message": "Sürüm"
|
|
174
|
+
},
|
|
175
|
+
"languageAutoOption": {
|
|
176
|
+
"message": "Otomatik (Tarayıcı)"
|
|
177
|
+
},
|
|
178
|
+
"genericYou": {
|
|
179
|
+
"message": "sen"
|
|
180
|
+
},
|
|
181
|
+
"expiredShort": {
|
|
182
|
+
"message": "Doldu"
|
|
183
|
+
},
|
|
184
|
+
"unitDay": {
|
|
185
|
+
"message": "gün"
|
|
186
|
+
},
|
|
187
|
+
"unitDays": {
|
|
188
|
+
"message": "günler"
|
|
189
|
+
},
|
|
190
|
+
"unitHour": {
|
|
191
|
+
"message": "saat"
|
|
192
|
+
},
|
|
193
|
+
"unitHours": {
|
|
194
|
+
"message": "saat"
|
|
195
|
+
},
|
|
196
|
+
"sendLink": {
|
|
197
|
+
"message": "Sihirli Bağlantı Gönder"
|
|
198
|
+
},
|
|
199
|
+
"displayButtonTitle": {
|
|
200
|
+
"message": "Display"
|
|
201
|
+
},
|
|
202
|
+
"hideRemovedFeedCards": {
|
|
203
|
+
"message": "Hide 'Post Removed'"
|
|
204
|
+
},
|
|
205
|
+
"hideButtonTitle": {
|
|
206
|
+
"message": "Hide"
|
|
207
|
+
},
|
|
208
|
+
"hidePromoted": {
|
|
209
|
+
"message": "Hide 'Promoted'"
|
|
210
|
+
},
|
|
211
|
+
"postSpacing": {
|
|
212
|
+
"message": "Post Spacing"
|
|
213
|
+
}
|
|
214
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
:root{--popup-height: 528px;--bg-primary: #09090b;--bg-secondary: #18181b;--bg-tertiary: #27272a;--text-primary: #f4f4f5;--text-secondary: #a1a1aa;--accent-primary: #3b82f6;--accent-hover: #2563eb;--border-color: #27272a;--success: #10b981;--radius-sm: 6px;--radius-md: 12px;--radius-lg: 16px;--font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;--transition: all .2s cubic-bezier(.16, 1, .3, 1)}*{margin:0;padding:0;box-sizing:border-box}html{width:340px;height:var(--popup-height);min-height:var(--popup-height);max-height:var(--popup-height)}body{width:340px;height:var(--popup-height);min-height:var(--popup-height);max-height:var(--popup-height);background-color:var(--bg-primary);color:var(--text-primary);font-family:var(--font-sans);-webkit-font-smoothing:antialiased;padding:16px;display:flex;flex-direction:column;overflow:hidden;user-select:none;-webkit-user-select:none;cursor:default}#hide-view,#display-view,#settings-view{flex:1;min-height:0}input,textarea,[contenteditable=true],.selectable-text,#modal-email-display{user-select:text;-webkit-user-select:text}.header{margin:0 -16px 16px;padding:0 16px 14px;border-bottom:1px solid var(--border-color);display:flex;align-items:center;justify-content:space-between}.brand{display:flex;flex-direction:column;align-items:flex-start;gap:4px;text-decoration:none}.brand:hover{opacity:.8}.brand-icon{width:48px;height:48px;background:linear-gradient(135deg,var(--accent-primary),var(--accent-hover));border-radius:14px;display:grid;place-items:center;color:#fff;font-weight:700;font-size:26px;box-shadow:0 8px 24px #3b82f659}.brand-text{display:flex;flex-direction:column;align-items:flex-start;gap:2px}.brand-text h1{font-size:22px;font-weight:700;color:var(--text-primary);letter-spacing:-.5px}.brand-text h1 span{background:linear-gradient(135deg,var(--accent-primary),#60a5fa);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}.brand-text p{font-size:12px;color:var(--text-secondary);font-weight:500}.global-toggle-btn{cursor:pointer;display:flex;align-items:center}.header-actions{display:flex;align-items:center;gap:8px}.header-actions>.global-toggle-btn{margin-left:6px}.global-toggle-btn input{display:none}.header-btn{cursor:pointer;width:32px;height:32px;border:none;background-color:var(--bg-tertiary)}.header-btn:hover{background-color:#3f3f46}.header-btn.active{background-color:var(--accent-primary);color:#fff}.global-toggle-btn input:checked~.header-btn{background-color:var(--accent-primary);color:#fff}.settings-container{display:flex;flex-direction:column;gap:12px;transition:var(--transition)}.settings-container.disabled{opacity:.5;pointer-events:none;filter:grayscale(1)}.settings-view{display:flex;flex-direction:column;gap:10px;height:100%}.settings-panel{background-color:var(--bg-secondary);border:1px solid var(--border-color);border-radius:var(--radius-sm);padding:16px;display:flex;flex-direction:column;gap:10px}.settings-panel h2{font-size:16px;font-weight:700;color:var(--text-primary)}.settings-label{font-size:13px;font-weight:500;color:var(--text-primary)}.settings-help{color:var(--text-secondary);font-size:12px;line-height:1.4}.subscription-row{display:flex;align-items:center;justify-content:space-between;gap:8px}.subscription-status-badge{display:inline-flex;align-items:center;justify-content:center;padding:4px 10px;border-radius:999px;border:1px solid transparent;font-size:12px;font-weight:700;line-height:1}.subscription-status-free{background:#64748b1a;color:#94a3b8;border-color:#64748b4d}.subscription-status-trial{background:#3b82f61a;color:#60a5fa;border-color:#3b82f64d}.subscription-status-active{background:#22c55e1a;color:#4ade80;border-color:#22c55e4d}.subscription-status-expired{background:#f59e0b1a;color:#fbbf24;border-color:#f59e0b4d}.settings-actions{display:flex;flex-direction:column;gap:8px;margin-top:2px}.settings-btn{width:100%;border-radius:10px;border:1px solid var(--border-color);padding:10px 12px;font-size:13px;font-weight:600;cursor:pointer;transition:var(--transition)}.settings-btn.secondary{background:var(--bg-primary);color:var(--text-primary)}.settings-btn.secondary:hover{border-color:#3f3f46}.settings-btn.primary{background:linear-gradient(135deg,var(--accent-primary),var(--accent-hover));border-color:transparent;color:#fff}.settings-btn.primary:hover{opacity:.92}.settings-btn:disabled{opacity:.65;cursor:not-allowed}.settings-footer{position:relative;margin:auto -16px 0;height:10px;min-height:10px;max-height:10px;padding:0 16px;color:var(--text-secondary);font-size:9px;font-weight:600;line-height:normal;letter-spacing:.2px;text-align:center}.settings-footer:before{content:"";position:absolute;top:0;left:0;right:0;height:1px;background:var(--border-color)}.settings-footer #settings-version-value{position:absolute;inset:2px 0 0;display:flex;align-items:center;justify-content:center;opacity:.92;line-height:1;transform:translateY(6px)}.locale-select-wrap{position:relative}.locale-select{width:100%;border:1px solid var(--border-color);border-radius:10px;background:var(--bg-primary);color:var(--text-primary);font-size:13px;font-weight:500;line-height:1.2;padding:12px 52px 12px 14px;outline:none;appearance:none;-webkit-appearance:none;-moz-appearance:none;transition:var(--transition);cursor:pointer}.locale-select:hover{border-color:#3f3f46}.locale-select:focus{border-color:var(--accent-primary);box-shadow:0 0 0 2px #3b82f62e}.locale-select-caret{position:absolute;right:10px;top:50%;transform:translateY(-50%);width:28px;height:28px;border-radius:8px;background:var(--bg-tertiary);color:var(--text-secondary);display:flex;align-items:center;justify-content:center;pointer-events:none;transition:var(--transition)}.locale-select-caret svg{width:14px;height:14px}.locale-select-wrap:focus-within .locale-select-caret{background:#3b82f62e;color:#8cb7ff}.setting-card{background-color:var(--bg-secondary);border:1px solid var(--border-color);border-radius:var(--radius-sm);padding:12px;display:flex;align-items:center;justify-content:space-between;transition:var(--transition);cursor:pointer;min-height:48px}.setting-card:hover{border-color:#3f3f46}.setting-card input[type=checkbox]{display:none}.setting-label{font-size:13px;font-weight:500;color:var(--text-primary);flex:1}.icon-btn{width:24px;height:24px;display:flex;align-items:center;justify-content:center;border-radius:6px;color:var(--text-secondary);background-color:var(--bg-tertiary);transition:var(--transition)}.setting-card input:checked~.icon-btn{background-color:var(--accent-primary);color:#fff}.icon-btn svg{width:16px;height:16px}.status-badge{padding:0;border-radius:0;font-size:inherit;font-weight:700;text-transform:none;letter-spacing:.5px;margin-left:6px;background:none;cursor:pointer;position:relative;-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}.status-badge:hover{opacity:.8}.status-badge:after{content:attr(data-title);position:absolute;top:100%;left:50%;transform:translate(-50%);background:#18181b;border:1px solid #27272a;color:#f4f4f5;padding:4px 8px;border-radius:6px;font-size:11px;white-space:nowrap;opacity:0;pointer-events:none;transition:none;margin-top:8px;z-index:100;font-weight:500;text-transform:none;box-shadow:0 4px 12px #00000080;-webkit-text-fill-color:#f4f4f5}.status-badge:hover:after{opacity:1}.status-badge.free,.status-badge.trial,.status-badge.pro{background:linear-gradient(135deg,var(--accent-primary),#60a5fa);-webkit-background-clip:text;background-clip:text}.hidden{display:none!important}.premium-feature.locked{opacity:.6;cursor:pointer}.premium-feature.locked .setting-label,.premium-feature.locked .icon-btn,.premium-feature.locked input,.premium-feature.locked .slider-track,.premium-feature.locked .value-display,.premium-feature.locked input[type=range]::-webkit-slider-thumb{filter:grayscale(1);opacity:.7}.premium-feature .pro-badge{order:-1;margin-right:8px;margin-left:0;filter:none;opacity:1}.premium-feature.locked:hover{opacity:.8;background-color:var(--bg-tertiary);border-color:var(--accent-primary)}.premium-feature.locked input,.premium-feature.locked .slider-track{pointer-events:none}.modal-overlay{position:fixed;inset:0;background:#000c;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);display:flex;align-items:center;justify-content:center;z-index:1000;padding:16px}.modal-content{background:var(--bg-secondary);border:1px solid var(--border-color);border-radius:var(--radius-lg);padding:24px;width:100%;max-width:320px;position:relative;box-shadow:0 25px 50px -12px #00000080}.modal-close{position:absolute;top:12px;right:12px;background:none;border:none;color:var(--text-secondary);font-size:24px;cursor:pointer;padding:4px 8px;line-height:1;border-radius:var(--radius-sm);transition:var(--transition)}.modal-close:hover{color:var(--text-primary);background:var(--bg-tertiary)}.modal-step h2{font-size:18px;font-weight:700;color:var(--text-primary);margin-bottom:8px;text-align:center}.modal-desc{font-size:13px;color:var(--text-secondary);text-align:center;margin-bottom:20px;line-height:1.5}.modal-step input[type=email]{width:100%;padding:12px 14px;background:var(--bg-primary);border:1px solid var(--border-color);border-radius:var(--radius-sm);color:var(--text-primary);font-size:14px;outline:none;transition:border-color .2s;margin-bottom:12px}.modal-step input:focus{border-color:var(--accent-primary)}.modal-step input::placeholder{color:var(--text-secondary)}.modal-btn{width:100%;padding:12px 16px;border:none;border-radius:var(--radius-sm);cursor:pointer;font-weight:600;font-size:14px;transition:opacity .2s,transform .1s}.modal-btn.primary{background:linear-gradient(135deg,var(--accent-primary),var(--accent-hover));color:#fff;box-shadow:0 4px 12px #3b82f64d}.modal-btn.primary:hover{opacity:.9;transform:translateY(-1px)}.modal-btn.primary:active{transform:translateY(0)}.modal-btn:disabled{opacity:.6;cursor:not-allowed;transform:none}.modal-error{color:#ef4444;font-size:12px;text-align:center;margin-top:8px;margin-bottom:8px}.modal-link-btn{background:none;border:none;color:var(--text-secondary);font-size:12px;cursor:pointer;padding:8px;margin-top:8px;display:block;width:100%;text-align:center}.modal-link-btn:hover{color:var(--text-primary);text-decoration:underline}.modal-footer{margin-top:20px;padding-top:16px;border-top:1px solid var(--border-color);text-align:center}.modal-footer p{font-size:11px;color:var(--text-secondary)}.modal-footer a{color:var(--accent-primary);text-decoration:none}.modal-footer a:hover{text-decoration:underline}.slider-section{margin-top:0;padding:10px 12px;background-color:var(--bg-secondary);border:1px solid var(--border-color);border-radius:var(--radius-sm);display:flex;flex-direction:column;justify-content:center;gap:8px;min-height:56px}.section-top{display:flex;justify-content:space-between;align-items:center}.section-label{font-size:13px;font-weight:500;color:var(--text-primary)}input[type=range]{-webkit-appearance:none;width:100%;background:transparent;cursor:pointer}input[type=range]:focus{outline:none}input[type=range]::-webkit-slider-runnable-track{width:100%;height:4px;cursor:pointer;background:var(--bg-tertiary);border-radius:2px;background-image:repeating-linear-gradient(90deg,var(--bg-tertiary) 0px,var(--bg-tertiary) calc(10% - 1px),var(--border-color) calc(10% - 1px),var(--border-color) 10%)}input[type=range]::-webkit-slider-thumb{height:12px;width:12px;border-radius:50%;background:var(--accent-primary);cursor:pointer;-webkit-appearance:none;margin-top:-4px;box-shadow:0 1px 3px #0000004d;transition:transform .1s ease,box-shadow .1s ease}input[type=range]:active::-webkit-slider-thumb{transform:scale(1.2);box-shadow:0 0 0 4px #0a66c233}.value-display{font-size:12px;font-weight:500;color:var(--accent-primary);font-variant-numeric:tabular-nums;margin-left:auto;opacity:.9}.pro-badge{background:#3b82f626;color:#3b82f6;padding:2px 6px;border-radius:4px;font-size:9px;font-weight:700;text-transform:uppercase;letter-spacing:.5px;margin-left:auto;margin-right:8px}.loading{opacity:.7;pointer-events:none}
|