MILK — Cookie Manager
Cookie's best friend! Modern cookie manager.
MILK — Cookie Managerとは何ですか?
MILK — Cookie ManagerはRafael Grigorianによって開発されたChromeの拡張機能で、その主な機能は「Cookie's best friend! Modern cookie manager.」です。
拡張機能のスクリーンショット
MILK — Cookie Manager拡張機能のCRXファイルをダウンロード
MILK — Cookie Manager拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
MILK is a modern cookie manager that aims to streamline the way you interact with cookies. With a modern and easy to use interface, it is easy to manage your browser's cookies. This extension comes with the following features:
🍪 Realtime Cookie List (Updated Without Refreshing)
🍪 Dynamically Search For Cookies
🍪 Optionally Search Cookies With Regular Expressions
🍪 Create, Read, Update & Delete Cookies
🍪 Block Cookies
🍪 Protect Cookies
🍪 Import & Export Cookies
🍪 Open Source Software (MIT)
🍪 Modern UI/UX (Material Design)
🍪 Dark / Light Theme
🍪 Fullscreen Mode Lets You See Cookies Of Focused Tab
If you would like to contribute to this project, please visit our Github repository at https://github.com/null93/chrome-milk. 拡張機能の基本情報
| 名前 | |
| ID | haipckejfdppjfblgondaakgckohcihp |
| 公式URL | https://chromewebstore.google.com/detail/milk-%E2%80%94-cookie-manager/haipckejfdppjfblgondaakgckohcihp |
| 説明 | Cookie's best friend! Modern cookie manager. |
| ファイルサイズ | 705 KB |
| インストール数 | 5,000 |
| 現在のバージョン | 2.4.0 |
| 最終更新日 | 2024-01-22 |
| 公開日 | 2020-02-02 |
| 評価 | 4.91/5 合計 22 レビュー |
| 開発者 | Rafael Grigorian |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/null93/milk-cookie-manager |
| ヘルプページのURL | https://github.com/null93/milk-cookie-manager/issues |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"minimum_chrome_version": "88",
"name": "MILK \u2014 Cookie Manager",
"short_name": "MILK",
"version": "2.4.0",
"description": "Cookie's best friend! Modern cookie manager.",
"homepage_url": "https:\/\/github.com\/null93\/milk-cookie-manager",
"author": "Rafael Grigorian",
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"offline_enabled": true,
"incognito": "not_allowed",
"permissions": [
"contextMenus",
"cookies",
"tabs",
"storage"
],
"background": {
"service_worker": "service-worker.js"
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"icons": {
"16": "icon-16.png",
"32": "icon-32.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"host_permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"action": {
"default_title": "MILK \u2014 Cookie Manager",
"default_icon": "icon-128.png",
"default_popup": "index.html"
}
} | |