fixes
This commit is contained in:
parent
016eb7cc51
commit
d6bdafd289
@ -1,5 +1,9 @@
|
|||||||
# -*- mode: python; python-indent-offset: 4; tab-width: 0; encoding: utf-8-unix -*-
|
# -*- mode: python; python-indent-offset: 4; tab-width: 0; encoding: utf-8-unix -*-
|
||||||
# This should be execed in config.py
|
# This should be execed in config.py
|
||||||
|
|
||||||
|
"""This is a simple way of deleting cookies and history at exit.
|
||||||
|
"""
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
import os
|
import os
|
||||||
import atexit
|
import atexit
|
||||||
|
@ -1,6 +1,10 @@
|
|||||||
# -*- mode: python; python-indent-offset: 4; tab-width: 0; encoding: utf-8-unix -*-
|
# -*- mode: python; python-indent-offset: 4; tab-width: 0; encoding: utf-8-unix -*-
|
||||||
# This should be execed in config.py
|
# This should be execed in config.py
|
||||||
|
|
||||||
|
"""This is a comprehensive list of chrome:// and qute:// URLs
|
||||||
|
so it's easy to find them, bound to the prefix letter c
|
||||||
|
"""
|
||||||
|
|
||||||
# https://cnman.github.io/chrome-urls.html
|
# https://cnman.github.io/chrome-urls.html
|
||||||
# not chrome://history/"
|
# not chrome://history/"
|
||||||
config.unbind("cd") # download-clear
|
config.unbind("cd") # download-clear
|
||||||
|
@ -1,9 +1,15 @@
|
|||||||
# -*- mode: python; python-indent-offset: 4; tab-width: 0; encoding: utf-8-unix -*-
|
# -*- mode: python; python-indent-offset: 4; tab-width: 0; encoding: utf-8-unix -*-
|
||||||
# This should be execed in config.py
|
# This should be execed in config.py
|
||||||
|
|
||||||
# Test by visiting https://coveryourtracks.eff.org/
|
"""Our attempt at listing the chrome flags for security and privacy,
|
||||||
# https://niek.github.io/chrome-features/
|
and some of the chrome features. Consult:
|
||||||
# https://peter.sh/experiments/chromium-command-line-switches/
|
* https://niek.github.io/chrome-features/
|
||||||
|
* https://peter.sh/experiments/chromium-command-line-switches/
|
||||||
|
|
||||||
|
Test by visiting https://coveryourtracks.eff.org/
|
||||||
|
|
||||||
|
YMMV!
|
||||||
|
"""
|
||||||
|
|
||||||
|
|
||||||
# this may interfere wuth some logins
|
# this may interfere wuth some logins
|
||||||
|
@ -1,3 +1,12 @@
|
|||||||
|
# -*- mode: python; python-indent-offset: 4; tab-width: 0; encoding: utf-8-unix -*-
|
||||||
|
# This should be execed in config.py
|
||||||
|
|
||||||
|
"""This intercepts cloudflare redirects and redirects to
|
||||||
|
web.archive.org - useful if you run over Tor.
|
||||||
|
|
||||||
|
It will open a new tab and close the old one.
|
||||||
|
"""
|
||||||
|
|
||||||
import re
|
import re
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
@ -1,4 +1,9 @@
|
|||||||
# privacy
|
# -*- mode: python; python-indent-offset: 4; tab-width: 0; encoding: utf-8-unix -*-
|
||||||
|
# This should be execed in config.py
|
||||||
|
|
||||||
|
"""Some privacy settings - YMMV
|
||||||
|
"""
|
||||||
|
|
||||||
c.content.geolocation = False
|
c.content.geolocation = False
|
||||||
c.content.dns_prefetch = False
|
c.content.dns_prefetch = False
|
||||||
c.content.canvas_reading = False
|
c.content.canvas_reading = False
|
||||||
|
Loading…
Reference in New Issue
Block a user