Improvement requests
: K-Meleon Forum
Use this forum to talk about a feature you're missing. Use the bug tracker to report it if necessary.
Goto:
Forum List
•
Message List
•
Search
•
Log In
Your Name:
Subject:
Help information
BBcode help
Smileys help
[quote=siria] While I'm at it... *whistle* Stumbled about the [b]DOM supercookies[/b] (not flash sort, see above), and it looks like those are NOT disabled when "normal" cookies are blocked, as they normally should? (e.g. in privbar) There is a setting that was introduced in Firefox2: [b]dom.storage.enabled (true,false)[/b] It is on by default and doesn't seem to follow when "normal" cookies are blocked, as one can check in about:config. Or perhaps this thing has no influence in KM, no idea - anyone knows? Those DOM cookies can store up to 5MB each, compared to 4kB for normal ones, or 100kB for Flash cookies. Some [b]info links[/b]: http://en.wikipedia.org/wiki/DOM_storage http://208.109.22.214/puppy/viewtopic.php?t=17734 https://addons.mozilla.org/en-US/firefox/addon/6623 german: http://photoxpress.org/debugging/workarounds/Was-ist-ein-Super-Cookie.php Anyway, since adding a toggle for the objects settings, I thought the dom-cookies should work similar, and this time it was only a matter of 5 min - button worked instantly *shock* Uhm, yeah, expect that the button this time wouldn't get out of pressed state *blush* But quickly found, just a littly typo, uff. [color=brown]# ------------------------- macro: main2.kmm v3 -------------------- [b]# Macro adds 2 buttons to Privacy Menu + PrivBar: # Toggle Flash (and other "object" stuff), and Toggle DOM SuperCookies [/b] # ----- Accessibility/Privacy/Security $pref_Objects="permissions.default.object"; $pref_DomStorage="dom.storage.enabled"; pref_ToggleObjects{ macroinfo=_("Toggle object loading"); menuchecked=(getpref(INT,$pref_Objects)==2); togglepref(INT,$pref_Objects,1,2,3); &_pref_SyncButtons2; statusbar(sub("%s",getpref(INT,$pref_Objects)==2?$off:$on,_("Object loading %s"))); } pref_ToggleDomStorage{ macroinfo=_("Toggle DomStorage-supercookies"); menuchecked=!getpref(BOOL,$pref_DomStorage); togglepref(BOOL,$pref_DomStorage); &_pref_SyncButtons2; statusbar(sub("%s",!getpref(BOOL,$pref_DomStorage)?$off:$on,_("DomStorage support %s"))); } # ----- PRIVATE # Menu Integration _pref_BuildMenu2{ setmenu(_Privacy_Settings,macro,"Block &Objects",pref_ToggleObjects); setmenu(_Privacy_Settings,macro,"Block DOM SuperCookies",pref_ToggleDomStorage); } $OnInit=$OnInit."_pref_BuildMenu2;"; # Toolbar Integration _pref_SyncButtons2{ pluginmsg(toolbars,"CheckButton","&Privacy Bar,macros(pref_ToggleObjects),".(getpref(INT,$pref_Objects)==2?1:0)); pluginmsg(toolbars,"CheckButton","&Privacy Bar,macros(pref_ToggleDomStorage),".(getpref(BOOL,$pref_DomStorage)?0:1)); } $OnLoad=$OnLoad."_pref_SyncButtons2;"; $OnStartup=$OnStartup."_pref_SyncButtons2;"; # ---------------------------------------------------------------------- [/color] PrivBar-Button for DOM supercookies (flash/objects-button see above): (For lack of other button have "doubled" the existing "block cookies", but don't confuse them) ------------------ added to toolbar.cgf in skin folder ---------------- [color=brown]DOM SuperCookies{ macros(pref_ToggleDomStorage)|&Privacy Block DOM SuperCookies privhot.bmp[2] privcold.bmp[2] }[/color] -------------------------------------------------------------------[/quote]
[Please Enable JavaScript]
K-Meleon forum is powered by
Phorum
.
Home/News
Screenshots
Download
Documentation
Resources
Get Involved
Forum
Bugs
Development