Import Wishlist
Import your Steam's wishlist to your GOG account.
Vad är Import Wishlist?
Import Wishlist är en Chrome-tillägg utvecklad av https://import-wishlist.netlify.app, och dess huvudfunktion är "Import your Steam's wishlist to your GOG account.".
Tilläggsskärmbilder
Ladda ner Import Wishlist-förlängningens CRX-fil
Ladda ner Import Wishlist-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
This extension helps you to import your Steam wishlist to your GOG account.
Source code: https://github.com/Daniel-Mendes/import-wishlist Grundläggande Information om Tillägg
| Namn | |
| ID | jenjpehgcedkjfjmelkodhagcogpbmgl |
| Officiell webbadress | https://chromewebstore.google.com/detail/import-wishlist/jenjpehgcedkjfjmelkodhagcogpbmgl |
| Beskrivning | Import your Steam's wishlist to your GOG account. |
| Filstorlek | 55.03 KB |
| Antal Installationer | 133 |
| Aktuell Version | 0.1.1 |
| Senast Uppdaterad | 2023-02-15 |
| Publiceringsdatum | 2022-06-09 |
| Betyg | 5.00/5 Totalt 4 Betyg |
| Utvecklare | https://import-wishlist.netlify.app |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | en,fr |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"action": {
"default_popup": "popup\/popup.html",
"default_title": "__MSG_extensionName__"
},
"author": "Daniel Mendes",
"background": {
"service_worker": "background\/background.js"
},
"content_scripts": [
{
"js": [
"content\/content.js"
],
"matches": [
"https:\/\/auth.gog.com\/token*"
]
}
],
"default_locale": "en",
"description": "__MSG_extensionDescription__",
"host_permissions": [
"https:\/\/store.steampowered.com\/wishlist\/profiles\/*",
"https:\/\/steamcommunity.com\/*",
"https:\/\/*.gog.com\/*",
"https:\/\/import-wishlist.netlify.app\/.netlify\/functions\/*"
],
"icons": {
"16": "assets\/icons\/icon-16.png",
"48": "assets\/icons\/icon-48.png",
"128": "assets\/icons\/icon-128.png"
},
"manifest_version": 3,
"name": "__MSG_extensionName__",
"permissions": [
"storage",
"identity",
"webNavigation"
],
"version": "0.1.1"
} | |