URL Replacement

Replace your target link with what you want

Τι είναι το URL Replacement;

Το URL Replacement είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον developer1106, και η κύρια λειτουργία του είναι "Replace your target link with what you want".

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

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

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

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

                        The main idea is from Sitecore CMS.

When I was working on Content Editor in creating new page items or updating published pages, I sometimes need to compare the item to current live page to see how current live page looks like. In this case, I would open a new tab or window and manually type “http(s)://www.mysite2.com/Finance/Market_News” in Address Bar because its database-driven item path is “/sitecore/content/Site2/Finance/Market_News” in Sitecore.

I was looking for a better way to reduce a few seconds and thinking that “Okay, let’s create a command which is getting item’s path by Item ID and replace prefix (“/sitecore/content/Site2/”) with site domain (http://www.mysite2.com/). This command would be used in a new ribbon in Content editor and xEditor (Page Editor).” In addition to this, there is a way to change the target DB to “Web” DB instead of “Master” when user clicks “Preview”.

However, until Sitecore Administrator or/and .Net developers add this feature, Sitecore end-users who have access to Content Editor would not have any chance to open live page directly from Content Editor. This, my own concern, made me think of creating a Chrome Extension so that any user can use shortcut without asking new feature to their agents or vendors. Even the main idea was from Sitecore, this extension can be used in any web page.

======= Version 1.1 =======
- Enable Incognito mode
- Minimize the size of package                    

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

Όνομα URL Replacement URL Replacement
ID hcggkglhggiegnomijleedobpnmgklim
Επίσημο URL https://chromewebstore.google.com/detail/url-replacement/hcggkglhggiegnomijleedobpnmgklim
Περιγραφή Replace your target link with what you want
Μέγεθος Αρχείου 4.45 MB
Αριθμός Εγκαταστάσεων 973
Τρέχουσα Έκδοση 1.1
Τελευταία Ενημέρωση 2017-07-10
Ημερομηνία Δημοσίευσης 2017-07-09
Αξιολόγηση 3.82/5 Συνολικά 11 Αξιολογήσεις
Προγραμματιστής developer1106
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "URL Replacement",
    "version": "1.1",
    "options_page": "configuration.html",
    "description": "Replace your target link with what you want",
    "short_name": "URL Replacement",
    "incognito": "split",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/jquery-3.1.0.min.js"
            ]
        }
    ],
    "icons": {
        "16": "img\/icon_arrow3.png",
        "128": "img\/icon_arrow3.png"
    },
    "browser_action": {
        "default_icon": "img\/icon_arrow3.png",
        "16": "img\/icon_arrow3.png",
        "default_title": "URL Replacement",
        "default_popup": "popup.html"
    },
    "permissions": [
        "contextMenus",
        "tabs",
        "storage",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "js\/content.js"
        ]
    }
}