Bookmark Manager

Bookmark Manager helps you to manage saved bookmarks in new tab

Τι είναι το Bookmark Manager;

Το Bookmark Manager είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://bookmark-manager-tab.com, και η κύρια λειτουργία του είναι "Bookmark Manager helps you to manage saved bookmarks in new tab".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Bookmark Manager

Λήψη αρχείων επέκτασης Bookmark Manager σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        The bookmark manager is more like a productivity app, it helps you keep track of items you find on the web in your browser so that you can revisit them later. With an app like this, you can save and organize contents to view later without worrying about losing them. Also, it allows you to access bookmarked content in browser new tab.

By clicking "Add to Chrome", I accept and agree to installing the Bookmark Manager Chrome extension and setting Chrome™ New Tab, Homepage takeover, and Search to that provided by the service with search results by Bing and the Terms of Use and Privacy Policy. 

Included features:
- Save any web link online. Any web content that you bookmark gets saved inside your Bookmark Extension just one click.
- Add / Edit Custom urls. The best features of this extension, we can add custom url & also edit our custom links as per required.
- Searchable. We can search every links inside the bookmarks using search bar.
- Make folder & subfolder. My favorite feature of Bookmark Manger is its ability to organize bookmarks. Not only you can create different folders for your bookmarks but each folder can also contain lists of web links.
- Free of Cost. Quick saving browser extensions & also available for everyone free of cost.

Terms of Use: https://browser-labs.com.au/terms-and-conditions/
Privacy Policy: https://browser-labs.com.au/privacy-policy/                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Bookmark Manager Bookmark Manager
ID noelljjfbhaggcbdbfikhllomgmfcldf
Επίσημο URL https://chromewebstore.google.com/detail/bookmark-manager/noelljjfbhaggcbdbfikhllomgmfcldf
Περιγραφή Bookmark Manager helps you to manage saved bookmarks in new tab
Μέγεθος Αρχείου 263 KB
Αριθμός Εγκαταστάσεων 23,325
Τρέχουσα Έκδοση 1.0.3
Τελευταία Ενημέρωση 2022-09-21
Ημερομηνία Δημοσίευσης 2021-12-17
Αξιολόγηση 1.50/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής https://bookmark-manager-tab.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://bookmark-manager-tab.com/
URL της Σελίδας Πολιτικής Απορρήτου https://browser-labs.com.au/privacy-policy
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Bookmark Manager",
    "short_name": "Bookmark Manager",
    "version": "1.0.3",
    "description": "Bookmark Manager helps you to manage saved bookmarks in new tab",
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icons\/icon.png",
        "32": "icons\/icon.png",
        "128": "icons\/icon.png"
    },
    "action": {
        "browser_style": false,
        "default_icon": {
            "128": "icons\/icon.png"
        },
        "default_title": "Bookmark Manager"
    },
    "chrome_url_overrides": {
        "newtab": "index.html"
    },
    "permissions": [
        "storage",
        "tabs",
        "bookmarks",
        "contextMenus",
        "notifications"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'; script-src-elem 'self' 'unsafe-inline' popup.html;"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "\/lib\/jquery-3.4.1.min.js",
                "\/assets\/js\/content_script.js"
            ],
            "css": [
                "\/assets\/css\/content_script.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/popup.html"
            ],
            "matches": [
                ""
            ]
        }
    ]
}