SMB Fortress

AI Guardrails Kit

Boundary paste bookmarklet

Drag the link below to your bookmarks bar. On supported consumer AI sites it prompts before you paste into a field. Training step for staff — not a security control by itself.

Install: right-click the green link → Bookmark link. Or copy the javascript: URL into a new bookmark's location.

DG: paste guard

Minified (bookmark target)

javascript:(function(){var h=location.hostname;var risky=/chatgpt|claude|gemini|copilot|perplexity|openai/i.test(h);if(risky&&!confirm('Paste may leave your org boundary. Continue?')){var a=document.activeElement;if(a&&'value'in a){a.blur();}}})();

Readable

javascript:(function () {
  var h = location.hostname;
  var risky = /chatgpt|claude|gemini|copilot|perplexity|openai/i.test(h);
  if (risky && !confirm("Paste may leave your org boundary. Continue?")) {
    var a = document.activeElement;
    if (a && "value" in a) a.blur();
  }
})();