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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 URL | 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" } } |