ExportThisCookie
ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format
O que é ExportThisCookie?
ExportThisCookie é uma extensão do Chrome desenvolvida por https://exportthiscookie.com, e sua principal característica é "ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão ExportThisCookie
Baixe arquivos de extensão ExportThisCookie no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | ExportThisCookie |
ID | dannllckdimllhkiplchkcaoheibealk |
URL Oficial | https://chromewebstore.google.com/detail/exportthiscookie/dannllckdimllhkiplchkcaoheibealk |
Descrição | ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format |
Tamanho do Arquivo | 37.42 KB |
Contagem de Instalações | 2,000 |
Versão Atual | Initial version |
Última Atualização | 2023-04-16 |
Data de Publicação | 2021-01-11 |
Classificação | 4.75/5 Total de 4 Avaliações |
Desenvolvedor | https://exportthiscookie.com |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Política de Privacidade | https://exportthiscookie.com/privacy |
Idiomas Suportados | 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" } } |