Cookitor

Chrome extension to decode Ruby on Rails session cookies.

Cookitorคืออะไร?

Cookitor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://cookitor.herokuapp.com และคุณลักษณะหลักของมันคือ "Chrome extension to decode Ruby on Rails session cookies."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Cookitor

ดาวน์โหลดไฟล์ส่วนขยาย Cookitor ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Cookitor Cookitor
ID fhkfggemmbpliiikmibomomcagnlbpdp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/cookitor/fhkfggemmbpliiikmibomomcagnlbpdp
คำอธิบาย Chrome extension to decode Ruby on Rails session cookies.
ขนาดไฟล์ 52.36 KB
จำนวนการติดตั้ง 202
เวอร์ชันปัจจุบัน 0.5
อัปเดตครั้งล่าสุด 2013-09-08
วันที่เผยแพร่ 2013-09-08
คะแนน 3.40/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา https://cookitor.herokuapp.com
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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"
    }
}