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.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Cookitor
قم بتنزيل ملفات الامتداد Cookitor بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 معلومات أساسية عن التمديد
| الاسم | |
| 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"
}
} | |