Cookitor

Chrome extension to decode Ruby on Rails session cookies.

Cookitor là gì?

Cookitor là một tiện ích mở rộng Chrome được phát triển bởi https://cookitor.herokuapp.com, và tính năng chính của nó là "Chrome extension to decode Ruby on Rails session cookies.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Cookitor

Tải xuống các tệp mở rộng Cookitor dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Cookitor Cookitor
ID fhkfggemmbpliiikmibomomcagnlbpdp
URL Chính Thức https://chromewebstore.google.com/detail/cookitor/fhkfggemmbpliiikmibomomcagnlbpdp
Mô tả Chrome extension to decode Ruby on Rails session cookies.
Kích Thước Tệp 52.36 KB
Số Lần Cài Đặt 202
Phiên Bản Hiện Tại 0.5
Cập Nhật Lần Cuối 2013-09-08
Ngày Phát Hành 2013-09-08
Đánh Giá 3.40/5 Tổng số 5 Đánh Giá
Nhà Phát Triển https://cookitor.herokuapp.com
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}