2.0.16 β€’ Published 4 years ago

go2index-theme-acrou v2.0.16

Weekly downloads
9
License
-
Repository
-
Last release
4 years ago

GoIndex-theme-acrou

Combining the power of Cloudflare Workers and Google Drive will allow you to index you files on the browser on Cloudflare Workers.

go2index/index.js is the content of the Workers script.

Basado en yanzai/goindex y alx-xlx/goindex

Demo

Acrou: https://oss.achirou.workers.dev/

Features

  • πŸ‘‘ Page-level caching,browser forward and backward without reloading (MAC users have a better experience with the trackpad)
  • πŸ—‚ Multi drive switching
  • πŸ” Http Basic Auth
  • 🎨 Grid view mode(File Preview)
  • 🎯 Paging load
  • 🌐 I18n(multi-language)
  • πŸ›  Markdown/Html render (Maybe it can be your blog)
  • πŸ–₯ Video Online(.vtt subtitle)
  • πŸ•Ή Support for custom video player (API)
  • 🎧 Audio Online
  • πŸš€ Faster speed

TODO

  • More file format preview
  • Let goindex be more than just a directory index

Quick Deployment

  1. Open any of the following links

  2. Auth and get the code

  3. Deploy the code to Cloudflare Workers

Deployment

  1. Open Google Drive API
  2. Create a OAuth client ID
  3. Install rclone software locally
  4. Get refresh_token with rclone
  5. Download index.js in https://github.com/Aicirou/goindex-theme-acrou/tree/master/go2index and replace client_id,client_secret,refresh_token for what you just got.
  6. Deploy the code to Cloudflare Workers

If you write a good article and want to share it with others, please submit Issues and I will post the link here.

Options

Video

OptionTypeDefaultDescription
apiString''External video player api. When this value is not null, all of the following options do not work
autoplayBooleantrueWhen set to true, the video plays automatically, depending on whether the browser supports the
invertTimeBooleanfalseDisplay the current time as a countdown rather than an incremental counter.
controlsArray, Function or Element['play-large', 'restart', 'play', 'progress', 'current-time', 'duration', 'mute', 'volume', 'captions', 'settings', 'pip', 'airplay', 'download', 'fullscreen']Which buttons are displayed in the control bar. See more CONTROLS.md
settingsArray['quality', 'speed', 'loop']You can specify which settings to show in the menu

For more option, see plyr options

Audio

OptionTypeDefaultDescription
containerString.aplayerNo support for changes
fixedBooleantrueNo support for changes
autoplayBooleanfalseaudio autoplay
loopString'all'player loop play, values: 'all', 'one', 'none'
orderString'list'player play order, values: 'list', 'random'
preloadString'auto'values: 'none', 'metadata', 'auto'
volumeNumber0.7default volume, notice that player will remember user setting, default volume will not work after user set volume themselves
audiosArray[]Playlists can be preset. FAQ

For more option, see APlayer options

FAQ

How do I change the way the list is sorted?

Modify line 636 of the code or search for params.orderBy

- params.orderBy = "folder,name,modifiedTime desc";
οΌ‹ params.orderBy = "modifiedTime desc";

How to preset an audio playlist?

Audio option add audios

audio: {
  audios: [
    {
      name: "Mojito",
      artist: "周杰伦",
      url: "https://xx.mp3",
      lrc: "https://xx.lrc",
      cover: "https://xx.jpg"
    }
  ]
}

Change log

v2.0.8

  • Fix image file actions does not work #100
  • Fix misjudged file to image format #88
  • Fix more than 10 drive not working #59 #85
  • Fix some of the operation functions in the search list cannot be used
  • Fix text cache content not refreshing
  • Add video default player(plyr) #22 #38
  • Add audio player (APlayer) #77
  • Add copy button to video page
  • Add NProgress
  • Add language cache cleanup
  • Add shortcut can't download tip #76
  • Markdown displays rendered html by default
  • CLI Delete prefetch preload of lazy load module
  • Delete fontawesome5

MIT