Cookitor
Chrome extension to decode Ruby on Rails session cookies.
What is Cookitor?
Cookitor is a Chrome extension developed by https://cookitor.herokuapp.com, and its main feature is "Chrome extension to decode Ruby on Rails session cookies.".
Extension Screenshots
Download Cookitor Extension CRX File
Download Cookitor extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension lets you easily decode the content of Rails sessions stored in cookies. Rails' session cookie-store saves sessions in serialised base64-encoded cookies. It also supports encrypted session cookies (new default in Rails 4). This enables you to quickly read the content of a session for debugging purposes. The extension uses the Cookitor web app (https://cookitor.herokuapp.com/) to decode the content of the session. This extension only works with ActionController::Session::CookieStore (the current default cookie store). https://github.com/garnu
Extension Basic Information
Name | Cookitor |
ID | fhkfggemmbpliiikmibomomcagnlbpdp |
Official URL | https://chromewebstore.google.com/detail/cookitor/fhkfggemmbpliiikmibomomcagnlbpdp |
Description | Chrome extension to decode Ruby on Rails session cookies. |
File Size | 52.36 KB |
Installation Count | 202 |
Current Version | 0.5 |
Last Updated | 2013-09-08 |
Publish Date | 2013-09-08 |
Rating | 3.40/5 Total 5 Ratings |
Developer | https://cookitor.herokuapp.com |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Cookitor", "version": "0.5", "manifest_version": 2, "description": "Chrome extension to decode Ruby on Rails session cookies.", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "background": { "scripts": [ "cookie.js" ] }, "permissions": [ "cookies", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "homepage_url": "http:\/\/cookitor.herokuapp.com\/", "icons": { "16": "icon16.png", "48": "logo.png", "128": "logo128.png" } } |