Easy Bookmark Saver

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

Was ist Easy Bookmark Saver?

Easy Bookmark Saver ist eine Chrome-Erweiterung, die von Elan Paul entwickelt wurde, und ihr Hauptmerkmal ist "Allows you to right click on any link and save it to your bookmarks.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Easy Bookmark Saver-Erweiterungs-CRX-Datei herunterladen

Laden Sie Easy Bookmark Saver-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Easy Bookmark Saver Easy Bookmark Saver
ID aaeoaemhmdbhpmdlcgamoncadfeddhgh
Offizielle URL https://chromewebstore.google.com/detail/easy-bookmark-saver/aaeoaemhmdbhpmdlcgamoncadfeddhgh
Beschreibung Allows you to right click on any link and save it to your bookmarks.
Dateigröße 179 KB
Installationsanzahl 120
Aktuelle Version 0.2
Letztes Update 2016-07-17
Veröffentlichungsdatum 2016-07-17
Bewertung 3.00/5 Insgesamt 2 Bewertungen
Entwickler Elan Paul
E-Mail developerelanpaul@gmail.com
Zahlungsart free
Unterstützte Sprachen 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"
        }
    }
}