Bookmark Manager

Bookmark sites, images, and videos to a gallery. Supports downloading videos from most sites.

Qu'est-ce que Bookmark Manager ?

Bookmark Manager est une extension Chrome développée par Tanishq Iyer, et sa fonction principale est "Bookmark sites, images, and videos to a gallery. Supports downloading videos from most sites.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Bookmark Manager

Téléchargez les fichiers d'extension Bookmark Manager au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        This extension allows you to bookmark your favorite sites, images, and videos. Instead of keeping a long list of unorganized bookmarks, you can add them to a visually appealing and navigable gallery. Simply open the context menu on a webpage, an image, or a video to bookmark it. Add tags to your bookmarks and quickly find them through a simple search interface. You can also download videos you bookmark. Most videos can be downloaded. Due to chrome store policy, youtube videos cannot be downloaded, although they can still be bookmarked.                    

Informations de Base sur l'Extension

Nom Bookmark Manager Bookmark Manager
ID bpbkeoboacafeolmjaidheedfeapfike
URL Officiel https://chromewebstore.google.com/detail/bookmark-manager/bpbkeoboacafeolmjaidheedfeapfike
Description Bookmark sites, images, and videos to a gallery. Supports downloading videos from most sites.
Taille du Fichier 214 KB
Nombre d'Installations 11
Version Actuelle 2.0.0
Dernière Mise à Jour 2023-05-19
Date de Publication 2019-06-03
Évaluation 3.00/5 Total 1 Évaluations
Développeur Tanishq Iyer
Email [email protected]
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "short_name": "Bookmark Manager",
    "name": "Bookmark Manager",
    "version": "2.0.0",
    "minimum_chrome_version": "88",
    "description": "Bookmark sites, images, and videos to a gallery. Supports downloading videos from most sites.",
    "icons": {
        "16": "icons\/icon.png",
        "48": "icons\/icon.png",
        "128": "icons\/icon.png"
    },
    "permissions": [
        "activeTab",
        "scripting",
        "storage",
        "contextMenus",
        "downloads"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "scanner.js"
            ]
        }
    ],
    "action": {
        "default_title": "Bookmark Manager"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "popup.html"
            ],
            "matches": [
                ""
            ]
        }
    ]
}