The bookmarklet from http://ostermiller.org/bookmarklets/cookies.html should work without modification.
To clear cookies for a specific site on Chrome for iOS:
- Save any site as a Bookmark via 3-dot menu at top right
- Rename Bookmark to something like “Clear Site Cookies”
- Copy/paste the below code below as the URL
Now just visit any site, pull up your bookmarks and click on the bookmark we just made and it’ll. That will clear the cookies just for that one site, even on Chrome iOS.
javascript:void((function(){var%20a,b,c,e,f;f=0;a=document.cookie.split(";%20");for(e=0;e<a.length&&a[e];e++){f++;for(b="."+location.host;b;b=b.replace(/^(?:%5C.|[^%5C.]+)/,"")){for(c=location.pathname;c;c=c.replace(/.$/,"")){document.cookie=(a[e]+";%20domain="+b+";%20path="+c+";%20expires="+new%20Date((new%20Date()).getTime()-1e11).toGMTString());}}}alert("Expired%20"+f+"%20cookies");})())
References
- originally found on this answer
- code is from this site