Pinalist - Bookmark Manager

All-in-one bookmark manager

Pinalist - Bookmark Manager란 무엇입니까?

Pinalist - Bookmark Manager은(는) https://pinalist.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "All-in-one bookmark manager"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Pinalist - Bookmark Manager 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Pinalist is a cloud-based all-in-one bookmark manager that helps with managing, organizing and searching your bookmarks. 

Pinalist extension connects your Chrome browser with https://pinalist.com app so you can save your bookmarks with ease.

Build your bookmark library in just a few clicks
Pinalist is aimed at those who want to browse the internet more efficiently.
It provides a fast and easy way to collect and organize your bookmarks while browsing.

The best way to stay organized
Pinalist is designed to make bookmark organization a seamless experience.
The app provides a simple way to save and categorize bookmarks using advanced tag management.
Quickly access hundreds of links for different resources, projects and for personal use.

Capture your thoughts
Leave notes along with your bookmarks so you can remember, understand and learn as you read.
If you find a piece of text particularly interesting, just save it along with your bookmark.

Searching, filtering and sorting
Pinalist is designed to make the process of finding bookmarks as simple and intuitive as possible.
Search through your bookmark library using keywords and tags as well as sort the results using a number of criteria.

Pin your favorite bookmarks
Use the dashboard to group and highlight the bookmarks you visit on a daily basis.
Drag and drop the groups according to your needs.

Share bookmarks with others
Create a page with your personal bookmark collection and share it with friends and co-workers.
Let others collect their thoughts and have an open discussion in the comments section.                    

확장 프로그램 기본 정보

이름 Pinalist - Bookmark Manager Pinalist - Bookmark Manager
ID bcenajpoioobmbmakldolfepddgioegm
공식 URL https://chromewebstore.google.com/detail/pinalist-bookmark-manager/bcenajpoioobmbmakldolfepddgioegm
설명 All-in-one bookmark manager
파일 크기 3.41 MB
설치 횟수 436
현재 버전 2.0.0
최근 업데이트 2024-01-07
출시 날짜 2022-02-11
평점 5.00/5 총 2 개의 평점
개발자 https://pinalist.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://pinalist.com
개인정보 보호 정책 페이지 URL https://pinalist.com/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Pinalist - Bookmark Manager",
    "homepage_url": "https:\/\/pinalist.com",
    "description": "All-in-one bookmark manager",
    "default_locale": "en",
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "bookmarks",
        "contextMenus",
        "scripting",
        "cookies"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "background": {
        "service_worker": "js\/background.js",
        "type": "module"
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "__MSG_extName__",
        "default_icon": {
            "19": "icons\/19.png",
            "38": "icons\/38.png"
        }
    },
    "web_accessible_resources": [
        {
            "resources": [
                "add-bookmark.html",
                "icons\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_scripts": [
        {
            "js": [
                "js\/content-script.js"
            ],
            "matches": [
                ""
            ]
        },
        {
            "js": [
                "js\/blanket_style_set.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Alt+Shift+Q"
            }
        },
        "add_quick_bookmark": {
            "suggested_key": {
                "default": "Alt+Q"
            },
            "description": "Add quick bookmark"
        }
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "version": "2.0.0"
}