arthurgivigir / app-privacy-policy-generator

A simple web app to generate a generic privacy policy for your Android/iOS apps

Home Page:https://app-privacy-policy-generator.firebaseapp.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

App Privacy Policy Generator

A simple web app to generate a generic privacy policy for your Android/iOS apps

Check out the web app!

Featured in

AndroidDev Digest

Show some ❤️

GitHub stars GitHub forks GitHub watchers GitHub followers
Twitter Follow

Web App Screenshot

screenshot

Contributing more 3rd Party Service's Privacy links

The webapp uses a JSON array to populate the list of 3rd party services section. If you want contribute a new 3rd party service for the section then open a Pull Request which simply adds a new JSON item to the JSON Array in public/js/thirdpartyservices.js

The format is very simple and you only need to provide fill the fields as follows:

[
  ..
  }, // Donot forget to add a ',' before adding your new item in the array
  {
    name: 'Google Play Services',
    model: 'gps', // this is stores the name of the model
    gps: true, // this stores the state of the model, notice the key is the same as the model above. It is required by code.
    logo: 'images/gps.png',
    link: {
      privacy: 'https://www.google.com/policies/privacy/',
      terms: ''
    }
  }
]

Note: You also will have to drop the logo image into the public/images/ folder. Make sure the logo is 160 × 160 in size.

Pull Requests

I welcome and encourage all pull requests. It usually will take me within 24-48 hours to respond to any issue or request. Here are some basic rules to follow to ensure timely addition of your request:

  1. If its a feature, bugfix, or anything please only change code to what you specify.
  2. Please keep PR titles easy to read and descriptive of changes, this will make them easier to merge :)
  3. Pull requests must be made against develop branch. Any other branch (unless specified by the maintainers) will get rejected.
  4. Check for existing issues first, before filing an issue.
  5. Have fun!

Author & Support

This project was created by Nishant Srivastava but hopefully developed and maintained by many others. See the the list of contributors here.

If you appreciate my work, consider buying me a cup of ☕ to keep me recharged 🤘

  • PayPal
  • Bitcoin Address: 13PjuJcfVW2Ad81fawqwLtku4bZLv1AxCL

I love using my work and thus maintain and keep my open source projects up to date!

License

Copyright 2017 Nishant Srivastava

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

About

A simple web app to generate a generic privacy policy for your Android/iOS apps

https://app-privacy-policy-generator.firebaseapp.com/

License:Apache License 2.0


Languages

Language:HTML 52.9%Language:CSS 32.0%Language:JavaScript 15.2%