Get cookies.txt LOCALLY

Get cookies.txt, NEVER send information outside with open-source

Get cookies.txt LOCALLYคืออะไร?

Get cookies.txt LOCALLY เป็นส่วนขยายของ Chrome ที่พัฒนาโดย kairi003 และคุณลักษณะหลักของมันคือ "Get cookies.txt, NEVER send information outside with open-source"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Get cookies.txt LOCALLY

ดาวน์โหลดไฟล์ส่วนขยาย Get cookies.txt LOCALLY ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension exports cookies.txt in Netscape or JSON format.
The Netscape cookies.txt format is compatible with wget, curl, MozillaCookieJar(Python3), and more.

Rest assured that this extension never transmits your information externally.
It features an open-source, unobfuscated source code that is readily available for inspection on GitHub or in the extension's installation directory.

To function correctly, this extension requires certain permissions, all of which are listed in the source code for transparency.
Specifically, it now needs "Download management" to execute a more appropriate file export method, which was previously achieved through "link generation and automatic clicking" in versions before v0.3.x.

- activeTab: To get the URL of the current active tab.
- cookies: To get and export cookies (not write or send).
- downloads: Only used to export local resources (cookies).
- notifications: To notify updates.
- hosts permissions: To get and export cookies (not write or send).

[GitHub]
https://github.com/kairi003/Get-cookies.txt-Locally

Example of extension installation directory:

[Windows]
%LOCALAPPDATA%\Google\Chrome\User Data\Default\Extensions\cclelndahbckbenkjhflpdbgdldlbecc

[Mac]
~/Library/Application Support/Google/Chrome/Default/Extensions/cclelndahbckbenkjhflpdbgdldlbecc

[Linux]
~/.config/google-chrome/Default/Extensions/cclelndahbckbenkjhflpdbgdldlbecc

# Privacy policy
https://github.com/kairi003/Get-cookies.txt-LOCALLY/blob/master/privacy-policy.md


# Release Notes
For details, see the releases in the Github repository.

## v0.5.3
https://github.com/kairi003/Get-cookies.txt-LOCALLY/releases/tag/v0.5.3
- Add a new line at the end of netscape format 
- Minor refactoring.

## v0.5.2
https://github.com/kairi003/Get-cookies.txt-LOCALLY/releases/tag/v0.5.2
- Fix: Icon badge count doesn't work correctly with multiple windows

## v0.5.1
https://github.com/kairi003/Get-cookies.txt-LOCALLY/releases/tag/v0.5.1
- Fix: redundant download tasks
- Add: donation links
- Add: table nowrap option

## v0.4.3
- Fix file export and copy to clipboard functions for Firefox compatibility

## v0.4.2
- Updated the wording of the Privacy Policy to reflect the release of the Firefox version (There are almost no changes to the policy for the Chrome version)

## v0.4.0
- Replace the file export method from linking to the Data URI to the downloads API

## v0.3.0
- Add icon badge counter for cookies num
- Add update notification
- Update export format style
- Update popup style
- Fix some bugs

## v0.2.0
- Add privacy policy

## v0.1.3
- Remove domain from filename by `Export All Cookies`                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Get cookies.txt LOCALLY Get cookies.txt LOCALLY
ID cclelndahbckbenkjhflpdbgdldlbecc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/get-cookiestxt-locally/cclelndahbckbenkjhflpdbgdldlbecc
คำอธิบาย Get cookies.txt, NEVER send information outside with open-source
ขนาดไฟล์ 244 KB
จำนวนการติดตั้ง 70,000
เวอร์ชันปัจจุบัน 0.5.3
อัปเดตครั้งล่าสุด 2024-01-08
วันที่เผยแพร่ 2023-03-03
คะแนน 4.94/5 รวมทั้งหมด 17 คะแนน
ผู้พัฒนา kairi003
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/kairi003/Get-cookies.txt-LOCALLY
URL หน้าช่วยเหลือ https://github.com/kairi003/Get-cookies.txt-LOCALLY/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Get cookies.txt LOCALLY",
    "description": "Get cookies.txt, NEVER send information outside with open-source",
    "version": "0.5.3",
    "manifest_version": 3,
    "permissions": [
        "activeTab",
        "cookies",
        "downloads",
        "notifications"
    ],
    "host_permissions": [
        ""
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/icon16.png",
            "32": "\/images\/icon32.png",
            "48": "\/images\/icon48.png",
            "128": "\/images\/icon128.png"
        }
    },
    "icons": {
        "16": "\/images\/icon16.png",
        "32": "\/images\/icon32.png",
        "48": "\/images\/icon48.png",
        "128": "\/images\/icon128.png"
    },
    "incognito": "split",
    "background": {
        "service_worker": "background.js"
    }
}