Pinalist - Bookmark Manager

All-in-one bookmark manager

Co to jest Pinalist - Bookmark Manager?

Pinalist - Bookmark Manager to rozszerzenie Chrome opracowane przez https://pinalist.com, a jego główną funkcją jest „All-in-one bookmark manager”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Pinalist - Bookmark Manager

Pobierz pliki rozszerzeń Pinalist - Bookmark Manager w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Pinalist - Bookmark Manager Pinalist - Bookmark Manager
ID bcenajpoioobmbmakldolfepddgioegm
Oficjalny URL https://chromewebstore.google.com/detail/pinalist-bookmark-manager/bcenajpoioobmbmakldolfepddgioegm
Opis All-in-one bookmark manager
Rozmiar pliku 3.41 MB
Liczba instalacji 436
Aktualna Wersja 2.0.0
Ostatnia Aktualizacja 2024-01-07
Data Publikacji 2022-02-11
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper https://pinalist.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://pinalist.com
Adres URL Strony Polityki Prywatności https://pinalist.com/privacy
Obsługiwane Języki 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"
}