Advanced User Agent Switcher
Helps users to change browser user agent string across all websites
Cos'è Advanced User Agent Switcher?
Advanced User Agent Switcher è un'estensione di Chrome sviluppata da https://kodemuse.dev, e la sua funzione principale è "Helps users to change browser user agent string across all websites".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Advanced User Agent Switcher
Scarica i file di estensione Advanced User Agent Switcher in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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/
Informazioni di Base sull'Estensione
Nome | Advanced User Agent Switcher |
ID | oocjkgckahlciblbfkgacgockpgihnec |
URL Ufficiale | https://chromewebstore.google.com/detail/advanced-user-agent-switc/oocjkgckahlciblbfkgacgockpgihnec |
Descrizione | Helps users to change browser user agent string across all websites |
Dimensione del File | 984 KB |
Conteggio Installazioni | 2,923 |
Versione Corrente | 1.0.0.2 |
Ultimo Aggiornamento | 2021-07-02 |
Data di Pubblicazione | 2021-02-17 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | https://kodemuse.dev |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://www.kodemuse.dev/advanced-user-agent-switcher/ |
URL della Pagina di Aiuto | https://www.kodemuse.dev/advanced-user-agent-switcher/ |
URL della Pagina della Politica sulla Privacy | https://www.kodemuse.dev/privacy |
Lingue Supportate | 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\/" } |