All Projects → pionxzh → FakeUrlBar

pionxzh / FakeUrlBar

Licence: other
A new trick to fake your address bar

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to FakeUrlBar

Mockaco
🐵 HTTP mock server, useful to stub services and simulate dynamic API responses, leveraging ASP.NET Core features, built-in fake data generation and pure C# scripting
Stars: ✭ 213 (+1538.46%)
Mutual labels:  fake
better-mock
Forked from Mockjs, Generate random data & Intercept ajax request. Support miniprogram.
Stars: ✭ 140 (+976.92%)
Mutual labels:  fake
dummy-products-api
An api to fetch dummy e-commerce product 👕 👗 👖 👚 JSON data with placeholder images.
Stars: ✭ 102 (+684.62%)
Mutual labels:  fake
fake-news-datasets
This repository contains list of available fake news datasets for data mining.
Stars: ✭ 28 (+115.38%)
Mutual labels:  fake
fake-toss-payments-server
Fake Toss Payments Server with Real SDK Library
Stars: ✭ 242 (+1761.54%)
Mutual labels:  fake
faker-buzzword-job-titles
👔 A job title generator for faker based on Buzzwords.
Stars: ✭ 14 (+7.69%)
Mutual labels:  fake
faker
Generate massive amounts of fake data in the browser and node.js
Stars: ✭ 6,940 (+53284.62%)
Mutual labels:  fake
stub-server
Stub server for REST APIs
Stars: ✭ 14 (+7.69%)
Mutual labels:  fake
jaymock-cli
Mock an API and generate fake JSON test data, right from the terminal.
Stars: ✭ 13 (+0%)
Mutual labels:  fake
awesome-web-online-tools
Many many useful Web Online Tools For Web Developers&Programmers
Stars: ✭ 13 (+0%)
Mutual labels:  fake
dummyhttp
Super simple HTTP server that replies a fixed body with a fixed response code
Stars: ✭ 25 (+92.31%)
Mutual labels:  fake
Faker.NET.Portable
C# port of the Ruby Faker gem (http://faker.rubyforge.org/)
Stars: ✭ 22 (+69.23%)
Mutual labels:  fake
Fake-News-Detection-Project
Fake News Detection Final Year College Project with Project Report, PPT, Code, Research Paper and Documents.
Stars: ✭ 16 (+23.08%)
Mutual labels:  fake
fakey-json
This is a utility for mocking json data that pretends the api response data with JSON format.
Stars: ✭ 27 (+107.69%)
Mutual labels:  fake
fake-sms-notifier
Fake SMS (as email during development) Notifier Bridge
Stars: ✭ 16 (+23.08%)
Mutual labels:  fake
random
Random data generator AKA faker
Stars: ✭ 14 (+7.69%)
Mutual labels:  fake
xrm-mock
📚 A fake implementation of the Xrm object model. Written in TypeScript against @types/xrm definitions.
Stars: ✭ 64 (+392.31%)
Mutual labels:  fake
fake-sandbox
👁‍🗨 This script will simulate fake processes of analysis sandbox/VM software that some malware will try to avoid.
Stars: ✭ 110 (+746.15%)
Mutual labels:  fake
minifaker
A lightweight alternative to faker.js
Stars: ✭ 64 (+392.31%)
Mutual labels:  fake
Stubmatic
Mock HTTP calls without coding. Designed specially for testing and testers.
Stars: ✭ 118 (+807.69%)
Mutual labels:  fake

FakeUrlBar

A new trick to fake your address bar. This demo page provides the basic API for using.

Source

Alt text

> DEMO <

Use Case

First of all, require the script from repo's folder /dist.

By default, the script will export the FakeUrlBar to global.

if (window.FakeUrlBar === undefined) return

window.addEventListener('fakeUrlBarActive', e => {
    /* do something when the fakeUrlBar showed/actived */
})

let fakeUrlBar = new window.FakeUrlBar({
    url: 'https://g00gle.com',  // The fake url address
    tabCount: 87,               // The number show in the tab button
    highlightHttps: true,       // Decide whether highlight the secure lock
    fakeTopHeight: 100          // The height of the fakeTop hide on the top of the page
})

// start to listen the hidden of chrome's address bar
fakeUrlBar.init()

Build Setup

# install dependencies
npm install

# build for production with minification
npm run build
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].