Added vpn rec link

This commit is contained in:
z0ccc 2022-10-26 23:37:56 -04:00
parent 5ec9a651e1
commit 18c9b61db7
2 changed files with 12 additions and 5 deletions

View file

@ -1,8 +1,8 @@
{ {
"manifest_version": 3, "manifest_version": 3,
"name": "Vytal - Spoof location data and user agent", "name": "Vytal - Spoof timezone, geolocation, locale and user agent",
"version": "2.0.0", "version": "2.0.0",
"description": "Spoof location data and user agent.", "description": "Spoof timezone, geolocation, locale and user agent.",
"permissions": ["storage", "debugger", "activeTab"], "permissions": ["storage", "debugger", "activeTab"],
"background": { "service_worker": "background.bundle.js" }, "background": { "service_worker": "background.bundle.js" },
"action": { "action": {

View file

@ -14,7 +14,7 @@ const Popup = () => {
<Flex <Flex
sx={{ sx={{
width: '350px', width: '350px',
height: '390px', height: '410px',
}} }}
> >
<Flex <Flex
@ -46,12 +46,19 @@ const Popup = () => {
<Text <Text
sx={{ sx={{
mb: '8px', mb: '8px',
fontSize: '10px', fontSize: '11px',
position: 'fixed', position: 'fixed',
bottom: '0', bottom: '0',
cursor: 'pointer',
}} }}
onClick={() => window.open('https://vytal.io')}
> >
Current tab won't be fully spoofed until after 1st or 2nd reload. Vytal does not change your IP address. To change your IP address you
will need to use a VPN such as
<Text sx={{ color: 'blue', textDecoration: 'underline' }}>
Proton VPN
</Text>
.
</Text> </Text>
</Box> </Box>
</Flex> </Flex>