My Snapp
Analyze your Snapp rides
What is My Snapp?
My Snapp is a Chrome extension developed by sepehrity, and its main feature is "Analyze your Snapp rides".
Extension Screenshots
Download My Snapp Extension CRX File
Download My Snapp extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Getting your rides history from Snapp application.
Extension Basic Information
Name | My Snapp |
ID | kmjgbjddieihpeglpobkhcnbejiooilh |
Official URL | https://chromewebstore.google.com/detail/my-snapp/kmjgbjddieihpeglpobkhcnbejiooilh |
Description | Analyze your Snapp rides |
File Size | 2.96 MB |
Installation Count | 3,202 |
Current Version | 3.3.1 |
Last Updated | 2021-07-25 |
Publish Date | 2020-11-23 |
Rating | 4.42/5 Total 12 Ratings |
Developer | sepehrity |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/sepehrity/my-snapp-extension |
Help Page URL | https://github.com/sepehrity/my-snapp-extension |
Privacy Policy Page URL | https://github.com/sepehrity/my-snapp-extension |
Supported Languages | 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'" } |