Cookies Extractor
Cookies Extractor is a handy tool that helps developers extract website cookies, making it easier for developers to debug APIs.
What is Cookies Extractor?
Cookies Extractor is a Chrome extension developed by HappyCoder, and its main feature is "Cookies Extractor is a handy tool that helps developers extract website cookies, making it easier for developers to debug APIs.".
Extension Screenshots
Download Cookies Extractor Extension CRX File
Download Cookies Extractor extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Cookies Extractor is a handy tool that helps developers extract website cookies, making it easier for developers to debug APIs.
Extension Basic Information
Name | Cookies Extractor |
ID | gdbmkehljhmfcjgbjcfaklnabeccddna |
Official URL | https://chromewebstore.google.com/detail/cookies-extractor/gdbmkehljhmfcjgbjcfaklnabeccddna |
Description | Cookies Extractor is a handy tool that helps developers extract website cookies, making it easier for developers to debug APIs. |
File Size | 64.83 KB |
Installation Count | 635 |
Current Version | 1.0.0 |
Last Updated | 2023-05-23 |
Publish Date | 2023-05-23 |
Rating | 5.00/5 Total 2 Ratings |
Developer | HappyCoder |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Cookies Extractor", "description": "Cookies Extractor is a handy tool that helps developers extract website cookies, making it easier for developers to debug APIs.", "version": "1.0.0", "manifest_version": 3, "background": { "service_worker": "background.js" }, "permissions": [ "tabs", "cookies" ], "host_permissions": [ "*:\/\/*\/*" ], "action": { "default_popup": "popup.html", "default_icon": "logo.png" }, "icons": { "128": "logo.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "inject.js" ] } ] } |