Time Well Spent — See prices in hours

Replace all prices with time based on your hourly wage.

Что такое Time Well Spent — See prices in hours?

Time Well Spent — See prices in hours - это расширение Chrome, разработанное gregrgreiner, и его основная функция - "Replace all prices with time based on your hourly wage.".

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

screenshot

Скачать файл CRX расширения Time Well Spent — See prices in hours

Скачайте файлы расширений Time Well Spent — See prices in hours в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        This extension replaces prices on all shopping websites (Amazon, eBay, Target, etc...) with how many hours you would have to spend working to make enough money to pay that price. This is calculated based on your hourly wage after state and federal taxes. (Idea Credit: Aaron Z. Lewis)                    

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

Название Time Well Spent — See prices in hours Time Well Spent — See prices in hours
ID fagkeimkebmhbeelogmpfpcfdiamhpoa
Официальный URL https://chromewebstore.google.com/detail/time-well-spent-%E2%80%94-see-pri/fagkeimkebmhbeelogmpfpcfdiamhpoa
Описание Replace all prices with time based on your hourly wage.
Размер файла 66.91 KB
Количество установок 689
Текущая Версия 3.0
Последнее Обновление 2023-12-28
Дата публикации 2018-05-12
Рейтинг 3.16/5 Всего 19 оценок
Разработчик gregrgreiner
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения http://gregrgreiner.com/
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Time Well Spent \u2014 See prices in hours",
    "version": "3.0",
    "description": "Replace all prices with time based on your hourly wage.",
    "author": "Greg Greiner",
    "icons": {
        "16": "icon.png",
        "48": "[email protected]",
        "128": "[email protected]"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_icon": {
            "16": "icon.png",
            "48": "[email protected]",
            "128": "[email protected]"
        },
        "default_title": "Time Well Spent"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-1.10.2.min.js",
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "storage"
    ],
    "short_name": "Time Well Spent",
    "manifest_version": 3
}