My Snapp
Analyze your Snapp rides
Wat is My Snapp?
My Snapp is een Chrome-extensie ontwikkeld door sepehrity, en de belangrijkste functie is "Analyze your Snapp rides".
Extensie Screenshots
Download het CRX-bestand van de extensie My Snapp
Download My Snapp-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Getting your rides history from Snapp application.
Basisinformatie over de Extensie
Naam | My Snapp |
ID | kmjgbjddieihpeglpobkhcnbejiooilh |
Officiële URL | https://chromewebstore.google.com/detail/my-snapp/kmjgbjddieihpeglpobkhcnbejiooilh |
Beschrijving | Analyze your Snapp rides |
Bestandsgrootte | 2.96 MB |
Aantal Installaties | 3,202 |
Huidige Versie | 3.3.1 |
Laatst Bijgewerkt | 2021-07-25 |
Publicatiedatum | 2020-11-23 |
Beoordeling | 4.42/5 Totaal 12 Beoordelingen |
Ontwikkelaar | sepehrity |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/sepehrity/my-snapp-extension |
Help Pagina-URL | https://github.com/sepehrity/my-snapp-extension |
URL van de Privacybeleid Pagina | https://github.com/sepehrity/my-snapp-extension |
Ondersteunde Talen | fa |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "My Snapp", "short_name": "My Snapp", "version": "3.3.1", "description": "Analyze your Snapp rides", "permissions": [ "tabs", "storage" ], "browser_action": { "default_popup": "popup\/index.html", "default_title": "My Snapp" }, "icons": { "128": "assets\/icon.png" }, "content_scripts": [ { "js": [ "contentscript.js" ], "matches": [ "https:\/\/app.snapp.taxi\/*" ] } ], "background": { "persistent": false, "scripts": [ "background.js" ] }, "web_accessible_resources": [ "assets\/*" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |