Modify href

A Chrome extension for modifying the href / host / domain of the links on a web page

Что такое Modify href?

Modify href - это расширение Chrome, разработанное https://costbell.com, и его основная функция - "A Chrome extension for modifying the href / host / domain of the links on a web page".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Modify href

Скачайте файлы расширений Modify href в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This simple extension does one simple thing: change the href on your current page

A Chrome extension for modifying the href / host / domain of the links on a web page

This small tool will be extremely helpful when you are hitting your own app host directly while links on your web app should rather point to the other hosts or public domain. It will replace the href in the DOM level so there will be no conflict with the javascript events that you might have on your anchor tags.

How to use:
1. Install the Chrome extension

2. Go to the options page of this extension

3. Enter the old href that you want to be replaced (e.g. abc.com, abc.com/xyz)

4. Enter the new href that you want to use (e.g. cba.com, cba.com/zyx)

5. Load your page

6. Click the extension icon!                    

Основная информация о расширении

Название Modify href Modify href
ID lplamhoijkpfdopdcoplgfkjghhbbpnc
Официальный URL https://chromewebstore.google.com/detail/modify-href/lplamhoijkpfdopdcoplgfkjghhbbpnc
Описание A Chrome extension for modifying the href / host / domain of the links on a web page
Размер файла 123 KB
Количество установок 197
Текущая Версия 0.0.4
Последнее Обновление 2022-11-18
Дата публикации 2015-08-21
Рейтинг 4.00/5 Всего 9 оценок
Разработчик https://costbell.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/buy/modify-href
URL страницы помощи https://github.com/buy/modify-href
URL страницы политики конфиденциальности https://costbell.com/privacy-policy
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Modify href",
    "description": "A Chrome extension for modifying the href \/ host \/ domain of the links on a web page",
    "version": "0.0.4",
    "options_page": "\/src\/options\/options.html",
    "browser_action": {
        "default_icon": "\/images\/off48.png",
        "default_title": "Click to modify!"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "background": {
        "scripts": [
            "\/src\/background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "\/images\/off16.png",
        "32": "\/images\/off32.png",
        "48": "\/images\/off48.png",
        "64": "\/images\/off64.png",
        "128": "\/images\/off128.png"
    },
    "author": "Chang Liu"
}