NdYAG / cookie_inspector

Missing cookie editor for Google Chrome

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Cookie Inspector

Missing cookie manager for Google Chrome. Edit and create cookies right in the Developer Tools.

Features:

  • View, Add, Edit, Remove Cookies
  • Live Reloading (No need to close and open the inspector when you change URLs)
  • Export Cookies

Coming Soon:

  • Import Cookies (SOON)

Design

  +--------+      +--------+      +------------+
  | Client |<---->| Socket |<---->| Background |
  +--------+      +--------+      +------------+

Client

The client is a Backbone.JS based application. The only difference is that it doesn't use the callbacks associated with saving, removing, or updating since it uses a system that functions like "websockets". Instead, it listens for events coming from the background and takes care of it appropriately.

Socket

An object that mediates between the client and the background page.

Background

The background page is the one that handles "server" side logic. Like fetching cookies, adding, removing and so on. The background sends messages to the client, and the client then either adds, removes, or updates it to the list.

License

MIT

About

Missing cookie editor for Google Chrome


Languages

Language:JavaScript 62.6%Language:HTML 22.0%Language:CSS 15.4%