Skip to content

alexlin1822/KidWebBrowser

Repository files navigation

Kid Web Browser V 1.0.0 (Open-source Verison) for Android Pad and iPad 😄

Platform: Android & IOS

Languages: JavaScript

Framework: Expo Router & React Native

License

Copyright (C) 2023 Alex Lin alexlin1822@hotmail.com

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/.

Main Features:

  1. Button list for web resources
  2. Custom URL list for each web resource
  3. Parent Control
  4. No sleep screen
  5. Login / register
  6. Storge resources for each user
  7. One resource include:
    title, icon, defualt page, allow page list (inclue title or url keyword, or the whole specific url ) Kid lock, full screen

Pages:

  • SignUp page
  • Login page
  • Member list page
    List all member in family
  • Resource list page
    list the preset resources, each resource show at a card view with title detail and entry button and a custom button to add resources to this user. Share button to share the resources to others users.
  • Web browser page (browser view and edit view)
    Browser view just allow whitelist resource and show meno. If not allow page. it will go back to default page. Edit view has url bar and whitelist edit (add, edit delete whitelist and meno)

Procedure

Alt text

Data Structure

#### Account List object ####

  const myAccount = {
    accountID: accountID,
    nickname: text_nickname,
    username: text_username,
    email: text_email,
    password: text_password,
    pin: text_pin,
    status: "0",
  };

#### Account profile object ####

  const myAccountProfile = {
    owner: accountID,
    profile: {
      setting1: "aa",
      setting2: "bb",
    },
    memberlist: [
      {
        key: "0",
        title: "Add Person",
        description: "Add family member",
        icon: "https://alexlin1822.github.io/aimage/0.png",
        memo: "",
        status: "0",
      },
      // {...}
    ],
  };


#### Resource profile object ####

  const myResourceProfile = {
    owner: memberID,
    resourcelist: [
      {
        rid: "0",
        title: "Add resource",
        description: "Add resource",
        default_url: "https://www.google.com/",
        icon: "https://www.google.com/favicon.ico",
        memo: "",
        status: "0",
        url_include: "",
        title_include: "",
        whitelist: "",
        use_url_include: true,
        use_title_include: false,
        use_whitelist: false,
        last_url: "https://www.google.com/",
        time_limit: "30",
      },
      // {...}
    ],
  };

This project is using Expo Router Framework

Expo Router Example

Use expo-router to build native navigation using files in the app/ directory.

🚀 How to use

npx create-expo-app -e with-router

📝 More Resources & Documents

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published