2018-09-21 21:34:31 +02:00
|
|
|
name: bisc
|
2021-03-23 16:09:03 +01:00
|
|
|
version: 0.2.4.0
|
2021-03-24 11:09:08 +01:00
|
|
|
synopsis: A small tool that clears cookies (and more).
|
2019-01-14 12:16:20 +01:00
|
|
|
description:
|
2019-06-02 11:49:03 +02:00
|
|
|
|
2021-03-24 11:09:08 +01:00
|
|
|
Websites can store unwanted data using all sorts of methods: besides
|
|
|
|
the usual cookies, there are also the local and session storage, the
|
|
|
|
IndexedDB API and more caches as well.
|
|
|
|
|
|
|
|
Bisc will try to go through each of them and remove all information from
|
|
|
|
websites that are not explicitly allowed (ie. a whitelist of domains).
|
|
|
|
It was created for qutebrowser, but it actually supports the storage
|
|
|
|
format used by Chromium-based browsers, which (sadly) means almost
|
|
|
|
every one nowadays.
|
|
|
|
|
2019-01-14 12:16:20 +01:00
|
|
|
|
2019-03-25 00:19:51 +01:00
|
|
|
homepage: https://maxwell.ydns.eu/git/rnhmjoj/bisc
|
2018-09-21 21:34:31 +02:00
|
|
|
license: GPL-3
|
|
|
|
license-file: LICENSE
|
|
|
|
author: Michele Guerini Rocco
|
|
|
|
maintainer: rnhmjoj@inventati.org
|
2021-03-23 16:09:03 +01:00
|
|
|
copyright: Copyright (C) 2021 Michele Guerini Rocco
|
2018-09-21 21:34:31 +02:00
|
|
|
category: Utility
|
|
|
|
build-type: Simple
|
2019-03-25 00:22:17 +01:00
|
|
|
extra-source-files: README.md
|
2018-09-21 21:34:31 +02:00
|
|
|
cabal-version: >=1.10
|
2019-03-25 00:19:51 +01:00
|
|
|
|
|
|
|
source-repository head
|
|
|
|
type: git
|
|
|
|
location: https://maxwell.ydns.eu/git/rnhmjoj/bisc
|
|
|
|
|
2018-09-21 21:34:31 +02:00
|
|
|
executable bisc
|
|
|
|
main-is: Main.hs
|
2019-08-22 16:09:41 +02:00
|
|
|
build-depends: base ==4.* , selda ==0.*,
|
|
|
|
selda-sqlite ==0.*,
|
2021-03-23 16:09:03 +01:00
|
|
|
leveldb-haskell ==0.*,
|
2019-06-02 10:39:07 +02:00
|
|
|
filepath, directory, text,
|
2021-03-23 16:09:03 +01:00
|
|
|
mtl, configurator,
|
|
|
|
data-default, bytestring
|
2018-09-21 21:34:31 +02:00
|
|
|
default-language: Haskell2010
|