Cosmos Extension

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

Cosmos Extension란 무엇입니까?

Cosmos Extension은(는) https://cosmos.so에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Cosmos is a home to collect and curate anything you find on the internet."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Cosmos Extension 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
개인정보 보호 정책 페이지 URL 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}