SellerLegend Sessions Helper

Extracts sessions data from Seller Central and posts to your SellerLegend account.

SellerLegend Sessions Helperとは何ですか?

SellerLegend Sessions HelperはSellerLegendによって開発されたChromeの拡張機能で、その主な機能は「Extracts sessions data from Seller Central and posts to your SellerLegend account.」です。

拡張機能のスクリーンショット

screenshot

SellerLegend Sessions Helper拡張機能のCRXファイルをダウンロード

SellerLegend Sessions Helper拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This extension will only work with SellerLegend, the one-stop Amazon sellers tool. See https://sellerlegend.com for details

The extension will download session and converion data from your SellerCentral account to your SellerLegend account. You will need to log on to your SellerCentral account first for the extension to be able to download the data.

Please bear in mind that this extension is still under beta testing. In case of issues, please report these to [email protected].

You will find the beta testing instructions here:

https://docs.sellerlegend.com/knowledgebase/how-do-i-beta-test-the-sellerlegend-chrome-extension/                    

拡張機能の基本情報

名前 SellerLegend Sessions Helper SellerLegend Sessions Helper
ID bjobpingnbebifafdpblklkkjlkgipmi
公式URL https://chrome.google.com/webstore/detail/sellerlegend-sessions-hel/bjobpingnbebifafdpblklkkjlkgipmi
説明 Extracts sessions data from Seller Central and posts to your SellerLegend account.
ファイルサイズ 359 KB
インストール数 471
現在のバージョン 4.0
最終更新日 2021-08-04
公開日 2020-01-28
開発者 SellerLegend
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://sellerlegend.com
プライバシーポリシーページのURL http://sellerlegend.com/privacy-policy
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SellerLegend Sessions Helper",
    "version": "4.0",
    "description": "Extracts sessions data from Seller Central and posts to your SellerLegend account.",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/sellercentral.amazon.com\/*",
                "https:\/\/sellercentral.amazon.co.uk\/*",
                "https:\/\/sellercentral.amazon.ca\/*",
                "https:\/\/sellercentral.amazon.de\/*",
                "https:\/\/sellercentral.amazon.it\/*",
                "https:\/\/sellercentral.amazon.es\/*",
                "https:\/\/sellercentral.amazon.in\/*",
                "https:\/\/sellercentral.amazon.mx\/*",
                "https:\/\/sellercentral.amazon.fr\/*",
                "https:\/\/sellercentral-japan.amazon.com\/*",
                "https:\/\/sellercentral.amazon.co.jp\/*"
            ],
            "js": [
                "js\/jquery-3.2.1.min.js",
                "js\/bootstrap.min.js",
                "js\/bootstrap-year-calendar.min.js",
                "js\/content.js"
            ],
            "css": [
                "css\/sl-styles.css",
                "css\/bootstrap-year-calendar.min.css"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "16": "images\/icons\/sl-16.png",
        "48": "images\/icons\/sl-48.png",
        "96": "images\/icons\/sl-96.png",
        "120": "images\/icons\/sl-120.png",
        "128": "images\/icons\/sl-128.png",
        "180": "images\/icons\/sl-180.png"
    },
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_popup": "html\/settings-section.html"
    },
    "externally_connectable": {
        "matches": [
            "*:\/\/*.amazon.com\/*"
        ]
    },
    "background": {
        "scripts": [
            "js\/jquery-3.2.1.min.js",
            "js\/FileSaver.js",
            "js\/messages.js",
            "js\/config.js",
            "js\/common.js",
            "js\/indexed-db.js",
            "js\/background.js"
        ]
    },
    "permissions": [
        "tabs",
        "http:\/\/localhost\/*",
        "*:\/\/*.sellerlegend.com\/",
        "https:\/\/sellercentral.amazon.com\/",
        "https:\/\/sellercentral.amazon.co.uk\/",
        "https:\/\/sellercentral.amazon.ca\/",
        "https:\/\/sellercentral.amazon.de\/",
        "https:\/\/sellercentral.amazon.it\/",
        "https:\/\/sellercentral.amazon.es\/",
        "https:\/\/sellercentral.amazon.in\/",
        "https:\/\/sellercentral.amazon.mx\/",
        "https:\/\/sellercentral.amazon.fr\/",
        "https:\/\/sellercentral-japan.amazon.com\/",
        "https:\/\/sellercentral.amazon.co.jp\/",
        "storage",
        "notifications",
        "webRequest"
    ],
    "web_accessible_resources": [
        "html\/*",
        "js\/*",
        "css\/*",
        "images\/*",
        "fonts\/*"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'"
}