Giter Site home page Giter Site logo

frameover's Introduction

frameover

For when you need a frame over!

Install

npm i frameover
yarn add frameover
pnpm install frameover

or whatever NPM equivalent you use

Docs, short & simple

const {create} = require("frameover");

window.onload = async () => {
    // takes in an optional background color in any CSS format [if you end up using it, I'd recommend a shade of gray]
    const frame = await create("rgba(0,0,0,0.5)");

    // do stuff in your frame
    frame.document.innerHTML = "";
    frame.window.console.log("in a frame!!");

    // and when you're done, destroy it so the user can get back to the page
    frame.destroy();

    // or pause it and resume later
    frame.pause();
    setTimeout(frame.resume, 5000);
};

Use cases

  • Web extension where you need to show something on top of a website without affecting the site's existing JS [cross-origin isolation for the win!]
  • There's definitely more but I can't think of them right now

Code

Reused from one of my old projects I never ended up releasing & cleaned up a bit in case anyone else wanted to use it.

Issues

Open an issue or PR.

frameover's People

Contributors

hieyou1 avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.