Breadcrumb Navigator

This extension allows you to navigate any URL in a breadcrumb-like way.

Τι είναι το Breadcrumb Navigator;

Το Breadcrumb Navigator είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://blog.tomayac.com, και η κύρια λειτουργία του είναι "This extension allows you to navigate any URL in a breadcrumb-like way.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Description:
=========
This extension allows users to navigate any URL in a breadcrumb-like way. There are two navigational options users can choose from: breadcrumb style or folder style. See the screenshots for an example of each. The extension allows for navigating on subdomain level (code.google.com => google.com), path level (google.com/search => google.com), or a mixture of both (chrome.google.com/extensions => google.com), including Ajax sites (example.com/#ajax-state => example.com). In addition to that the extension in the present free version rewrites links to Amazon.com to contain an Amazon associate tag if there is not already another associate tag available. The Amazon brand name is property of Amazon.com. This extension is not associated with or sponsored by the trademark owner.

Breadcrumb Navigator Theming Kit on GitHub:
==================================
For all those who don't like the themes that the extension ships with 
=> https://github.com/tomayac/Breadcrumb-Navigator-Theming-Kit
If you're done with your theme, send me ([email protected]) the CSS file and I can include your theme in the next release of the extension.

Awards:
======
Breadcrumb Navigator has been tested by Softpedia:
=> http://mac.softpedia.com/get/Internet-Utilities/Breadcrumb-Navigator.shtml
It has been granted the Softpedia "100% Clean" award.

Changelog:
========
* 1.1.0:
- New feature: open breadcrumb in new tab upon middle- or CTRL-clicking it.
- New options: open new tabs in background or foreground.

* 1.0.4:
- Minor code reorganisation.

* 1.0.3:
- Changed the behavior of the popup window to close immediately after having been clicked.
- Bug fix in the Amazon code. Sorry.

* 1.0.2:
- Fixed a bug where the update notification would be shown every time. Sorry.

* 1.0.1:
- Thanks to @russenreaktor two new lightweight themes are available: Simple Blue and Simple White
- Added German localization

* 1.0.0:
- Added a new theme.
- Enabled breadcrumb navigation on Ajax sites.
- Unfortunately the Omnibar can't be modified. Closest to modifying the Omnibar is creating an Infobar, however, this is only available in the Dev Channel of Chrome. 

* 0.1.0:
- Initial release.

Privacy policy:
===============

https://raw.githubusercontent.com/tomayac/blogccasion/master/privacy-policy.txt                    

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

Όνομα Breadcrumb Navigator Breadcrumb Navigator
ID hphdahmligbkhjoedbpeoigbmopehdhm
Επίσημο URL https://chromewebstore.google.com/detail/breadcrumb-navigator/hphdahmligbkhjoedbpeoigbmopehdhm
Περιγραφή This extension allows you to navigate any URL in a breadcrumb-like way.
Μέγεθος Αρχείου 313 KB
Αριθμός Εγκαταστάσεων 470
Τρέχουσα Έκδοση 1.1.2
Τελευταία Ενημέρωση 2020-12-01
Ημερομηνία Δημοσίευσης 2018-10-30
Αξιολόγηση 4.57/5 Συνολικά 21 Αξιολογήσεις
Προγραμματιστής https://blog.tomayac.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://blog.tomayac.com/
Διεύθυνση URL της Σελίδας Βοήθειας http://twitter.com/tomayac
URL της Σελίδας Πολιτικής Απορρήτου https://raw.githubusercontent.com/tomayac/blogccasion/master/privacy-policy.txt
Υποστηριζόμενες Γλώσσες de,en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "manifest_version": 2,
    "version": "1.1.2",
    "description": "__MSG_extDesc__",
    "icons": {
        "48": "icon.png",
        "128": "icon.png"
    },
    "default_locale": "en_US",
    "page_action": {
        "default_icon": "icon.png",
        "default_title": "__MSG_extTitle__",
        "default_popup": "popup.html"
    },
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "amazon.js",
                "content_script.js"
            ]
        }
    ],
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}