Cosmos Extension

Cosmos is a home to collect and curate anything you find on the internet.

ما هو Cosmos Extension؟

Cosmos Extension هو إضافة Chrome تم تطويرها بواسطة https://cosmos.so، والميزة الرئيسية لها هي "Cosmos is a home to collect and curate anything you find on the internet.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Cosmos Extension

قم بتنزيل ملفات الامتداد Cosmos Extension بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Download our extension to save images, links, videos, articles, and more in your Cosmos.

– On Instagram: Hover over the image and click on the Cosmos button.
– Images on the web: Right-click the image and save to Cosmos.
– Links: Save any website or article with just a single click after pinning the extension.
– Text: Highlight any text on the web, right-click and save to Cosmos.                    

معلومات أساسية عن التمديد

الاسم Cosmos Extension Cosmos Extension
ID mgjneceglphcpbbfbhjplkpgfapebmdg
عنوان URL الرسمي https://chromewebstore.google.com/detail/cosmos-extension/mgjneceglphcpbbfbhjplkpgfapebmdg
الوصف Cosmos is a home to collect and curate anything you find on the internet.
حجم الملف 2.47 MB
عدد التثبيتات 7,000
النسخة الحالية 4.8.1
آخر تحديث 2024-03-01
تاريخ النشر 2022-07-31
تقييم 5.00/5 مجموع تقييمات 10
المطور https://cosmos.so
البريد الإلكتروني [email protected]
نوع الدفع free
عنوان صفحة سياسة الخصوصية https://www.cosmos.so/privacy-policy
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Cosmos Extension",
    "description": "Cosmos is a home to collect and curate anything you find on the internet.",
    "homepage_url": "https:\/\/join.cosmos.so",
    "manifest_version": 3,
    "version": "4.8.1",
    "background": {
        "service_worker": "js\/backgroundLoader.js"
    },
    "action": {
        "default_title": "Cosmos",
        "default_icon": {
            "16": "assets\/img\/icon-16.png",
            "32": "assets\/img\/icon-32.png",
            "128": "assets\/img\/icon-128.png",
            "256": "assets\/img\/icon-256.png"
        }
    },
    "icons": {
        "16": "assets\/img\/icon-16.png",
        "32": "assets\/img\/icon-32.png",
        "128": "assets\/img\/icon-128.png",
        "256": "assets\/img\/icon-256.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.cosmos.so\/authorize-extension"
            ],
            "css": [],
            "js": [
                "js\/browser-polyfill.js",
                "js\/safariLogin.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/*.cosmos.so\/*"
            ],
            "css": [],
            "js": [
                "js\/browser-polyfill.js",
                "js\/safariLogout.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/*.cosmos.so\/*"
            ],
            "css": [],
            "js": [
                "js\/identifier.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "activeTab",
        "contextMenus",
        "cookies",
        "storage",
        "scripting",
        "alarms"
    ],
    "host_permissions": [
        "*:\/\/*\/*",
        "https:\/\/*.cosmos.so\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}