This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id": "top-banner", | |
"name": "Top Banner", | |
"version": "0.1.0", | |
"license": "MIT", | |
"type": "website", | |
"website_url": "https://your-site.com", | |
"description": "Display a top sticky banner with a CTA button", | |
"author": { | |
"name": "Your Name", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
console.log("👋 banner.js loaded!"); | |
(function () { | |
// Prevent showing multiple times | |
if (localStorage.getItem("crisp_top_banner_closed")) return; | |
// Create banner container | |
const banner = document.createElement("div"); | |
banner.id = "crisp-top-banner"; | |
banner.style.cssText = ` |