ExportThisCookie
ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format
什麼是ExportThisCookie?
ExportThisCookie是由https://exportthiscookie.com開發的Chrome擴展程式,該擴展的主要功能是“ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format”。
擴展截圖
下載ExportThisCookie擴展crx文件
下載ExportThisCookie擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Export cookies in JSON format which can be directly imported in your code. Example: This comes handy while using python requests library. This allows you export cookie in {"key":"value"} format.
擴展基本資訊
名稱 | ExportThisCookie |
ID | dannllckdimllhkiplchkcaoheibealk |
官方網址 | https://chromewebstore.google.com/detail/exportthiscookie/dannllckdimllhkiplchkcaoheibealk |
簡介 | ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format |
檔案大小 | 37.42 KB |
安裝次數 | 2,000 |
目前版本 | Initial version |
更新時間 | 2023-04-16 |
上架時間 | 2021-01-11 |
評分 | 4.75/5 共 4 次評分 |
開發者 | https://exportthiscookie.com |
電子郵箱 | [email protected] |
付費類型 | free |
隱私政策頁面URL | https://exportthiscookie.com/privacy |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "ExportThisCookie", "version": "0.0.0.2", "version_name": "Initial version", "description": "ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format", "default_locale": "en", "icons": { "128": "\/cookie.png" }, "permissions": [ "webRequest", "webRequestBlocking", "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "scripts": [ "\/js\/background.js" ] }, "content_security_policy": "script-src 'self' https:\/\/www.googletagmanager.com; object-src 'self'", "browser_action": { "default_icon": "\/cookie.png", "default_title": "ExportThisCookie", "default_popup": "\/popup.html" } } |