GoodRelations Currency Converter

This extension converts foreign currencies found in GoodRelations mark-up.

Co to jest GoodRelations Currency Converter?

GoodRelations Currency Converter to rozszerzenie Chrome opracowane przez http://blog.tomayac.com, a jego główną funkcją jest „This extension converts foreign currencies found in GoodRelations mark-up.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia GoodRelations Currency Converter

Pobierz pliki rozszerzeń GoodRelations Currency Converter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        This extension is based on the RDFa API as published by the RDFa Working Group at http://www.w3.org/TR/rdfa-api/. The author is not affiliated with the Working Group. An Amazon affiliate cookie gets dropped when the user clicks a search link. The Amazon brand name is property of Amazon.com. The GoodRelations brand name is property of Martin Hepp. 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.

Changelog:
========
* 0.2.1:
- Initial release                    

Podstawowe informacje o rozszerzeniu

Nazwa GoodRelations Currency Converter GoodRelations Currency Converter
ID nndndkmonaojkllhllgkhfagiakahnki
Oficjalny URL https://chrome.google.com/webstore/detail/nndndkmonaojkllhllgkhfagiakahnki
Opis This extension converts foreign currencies found in GoodRelations mark-up.
Rozmiar pliku 41.18 KB
Liczba instalacji 46
Aktualna Wersja 0.2.3
Ostatnia Aktualizacja 2020-11-30
Data Publikacji 2013-11-25
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper http://blog.tomayac.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia http://blog.tomayac.com/
Adres URL Strony Pomocy http://twitter.com/tomayac
Adres URL Strony Polityki Prywatności https://raw.githubusercontent.com/tomayac/blogccasion/master/privacy-policy.txt
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "manifest_version": 2,
    "version": "0.2.3",
    "default_locale": "en_US",
    "description": "__MSG_extDesc__",
    "icons": {
        "128": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "linkeddataapi.js",
                "amazon.js",
                "content_script.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "permissions": [
        "tabs"
    ],
    "page_action": {
        "default_name": "Creative Commons Laser Highlighter",
        "default_icon": "icon.png",
        "popup": "popup.html"
    }
}