Advanced User Agent Switcher
Helps users to change browser user agent string across all websites
Co to jest Advanced User Agent Switcher?
Advanced User Agent Switcher to rozszerzenie Chrome opracowane przez https://kodemuse.dev, a jego główną funkcją jest „Helps users to change browser user agent string across all websites”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Advanced User Agent Switcher
Pobierz pliki rozszerzeń Advanced User Agent Switcher w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
This extension provides you with two options to change user agent string: - Use custom user agent string - Use pre-defined user agent string For in-depth documentation on how to use the extension, please visit: https://www.kodemuse.dev/advanced-user-agent-switcher/ Privacy notice: This software neither collects nor transmits any personally identifiable information. This software does not track your browsing behaviour. Information necessary for functioning of this software is stored on the devices of the end user, our servers do not have access to this information. For more information please read our privacy policy and terms of service. Terms: https://www.kodemuse.dev/tos/ Privacy: https://www.kodemuse.dev/privacy/
Podstawowe informacje o rozszerzeniu
Nazwa | Advanced User Agent Switcher |
ID | oocjkgckahlciblbfkgacgockpgihnec |
Oficjalny URL | https://chromewebstore.google.com/detail/advanced-user-agent-switc/oocjkgckahlciblbfkgacgockpgihnec |
Opis | Helps users to change browser user agent string across all websites |
Rozmiar pliku | 984 KB |
Liczba instalacji | 2,923 |
Aktualna Wersja | 1.0.0.2 |
Ostatnia Aktualizacja | 2021-07-02 |
Data Publikacji | 2021-02-17 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | https://kodemuse.dev |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://www.kodemuse.dev/advanced-user-agent-switcher/ |
Adres URL Strony Pomocy | https://www.kodemuse.dev/advanced-user-agent-switcher/ |
Adres URL Strony Polityki Prywatności | https://www.kodemuse.dev/privacy |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Advanced User Agent Switcher", "version": "1.0.0.2", "short_name": "AUAS", "description": "Helps users to change browser user agent string across all websites", "permissions": [ "storage", "http:\/\/*\/*", "https:\/\/*\/*", "webRequest", "webRequestBlocking" ], "icons": { "16": "\/image\/icon\/free\/16.png", "24": "\/image\/icon\/free\/24.png", "32": "\/image\/icon\/free\/32.png", "48": "\/image\/icon\/free\/48.png", "64": "\/image\/icon\/free\/64.png", "128": "\/image\/icon\/free\/128.png", "256": "\/image\/icon\/free\/256.png", "512": "\/image\/icon\/free\/512.png" }, "browser_action": { "default_title": "AUAS", "default_icon": "\/image\/icon\/free\/128.png", "default_popup": "\/ng\/popup\/comp\/popup\/popup.html" }, "background": { "page": "\/background\/background.html" }, "web_accessible_resources": [ "\/ng\/content\/**\/*.html", "\/css_content\/**\/*.css" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "\/js_content\/user_agent.js" ], "run_at": "document_end", "all_frames": true } ], "manifest_version": 2, "homepage_url": "https:\/\/www.kodemuse.dev\/advanced-user-agent-switcher\/" } |