Cookitor

Chrome extension to decode Ruby on Rails session cookies.

Apa itu Cookitor?

Cookitor adalah ekstensi Chrome yang dikembangkan oleh https://cookitor.herokuapp.com, dan fitur utamanya adalah "Chrome extension to decode Ruby on Rails session cookies.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Cookitor

Unduh file ekstensi Cookitor dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Cookitor Cookitor
ID fhkfggemmbpliiikmibomomcagnlbpdp
URL Resmi https://chromewebstore.google.com/detail/cookitor/fhkfggemmbpliiikmibomomcagnlbpdp
Deskripsi Chrome extension to decode Ruby on Rails session cookies.
Ukuran File 52.36 KB
Jumlah Instalasi 202
Versi Saat Ini 0.5
Terakhir Diperbarui 2013-09-08
Tanggal Publikasi 2013-09-08
Penilaian 3.40/5 Total 5 Penilaian
Pengembang https://cookitor.herokuapp.com
Tipe Pembayaran free
Bahasa yang Didukung 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"
    }
}