allows you to view files & folders starting with "." in iCloud.
// ==UserScript==
// @name iCloud dotfile
// @description allows you to view files & folders starting with "." in iCloud.
// @version 1
// @icon https://i.imgur.com/ORAaPzD.png
// @author VillainsRule
// @namespace https://villainsrule.xyz
// @match https://www.icloud.com/*
// @grant none
// ==/UserScript==
let oStartsWith = String.prototype.startsWith;
String.prototype.startsWith = function(a, b) {
if (a === '.') return false;
return oStartsWith.call(this, a, b);
}