Easy Bookmark Saver

Allows you to right click on any link and save it to your bookmarks.

Qu'est-ce que Easy Bookmark Saver ?

Easy Bookmark Saver est une extension Chrome développée par Elan Paul, et sa fonction principale est "Allows you to right click on any link and save it to your bookmarks.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Easy Bookmark Saver

Téléchargez les fichiers d'extension Easy Bookmark Saver 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

                        Easy Bookmark Saver allows you to right-click any link and add it to the bookmarks bar without having to load the page or select which folder. Just right-click the link, select "Add to EZ Bookmark" and that's it.                    

Informations de Base sur l'Extension

Nom Easy Bookmark Saver Easy Bookmark Saver
ID aaeoaemhmdbhpmdlcgamoncadfeddhgh
URL Officiel https://chromewebstore.google.com/detail/easy-bookmark-saver/aaeoaemhmdbhpmdlcgamoncadfeddhgh
Description Allows you to right click on any link and save it to your bookmarks.
Taille du Fichier 179 KB
Nombre d'Installations 120
Version Actuelle 0.2
Dernière Mise à Jour 2016-07-17
Date de Publication 2016-07-17
Évaluation 3.00/5 Total 2 Évaluations
Développeur Elan Paul
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": 2,
    "name": "Easy Bookmark Saver",
    "short_name": "EZ Mark",
    "description": "Allows you to right click on any link and save it to your bookmarks.",
    "version": "0.2",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "64": "icon64.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon128.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "contextMenus",
        "bookmarks",
        "activeTab",
        "tabs",
        "storage"
    ],
    "background": {
        "scripts": [
            "jquery.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.js",
                "content_script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "sef.png",
        "delete.png"
    ],
    "commands": {
        "showcontentdialog": {
            "suggested_key": {
                "default": "Ctrl+Shift+Y"
            },
            "description": "show content dialog"
        }
    }
}