Amazon Command Quickly

Amazonコマンドをワンクリックで追加して実行します

Was ist Amazon Command Quickly?

Amazon Command Quickly ist eine Chrome-Erweiterung, die von ゴン entwickelt wurde, und ihr Hauptmerkmal ist "Amazonコマンドをワンクリックで追加して実行します".

Erweiterungsscreenshots

screenshot

Amazon Command Quickly-Erweiterungs-CRX-Datei herunterladen

Laden Sie Amazon Command Quickly-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Amazonの便利コマンド

○並び替え系
・&sort=salesrank(売れている順)
・&sort=-salesrank(売れていない順)
・&sort=review-rank(レビューが高い順)
・&sort=-review-rank(レビューが低い順)
・&sort=-price(価格の高い順)
・&sort=price(価格の低い順)
・&sort=-releasedate(発売日の新しい順)
・&sort=date-asc-rank(発売日の古い順)

○絞込み系
・&low-price=○○(○○円以上の商品)
・&high-price=××(××円以下の商品)
・&low-price=○○&high-price=××(○○円~××円の商品)
・&pct-off=○○-(○○%OFF以上の商品)
・&pct-off=-××(××%OFF以下の商品)
・&pct-off=○○-××(○○%~××%OFFの商品)

をボタンワンクリックで実行可能にします。                    

Grundlegende Informationen zur Erweiterung

Name Amazon Command Quickly Amazon Command Quickly
ID adnclnmfdlbkemdddekdhmofeippakhf
Offizielle URL https://chromewebstore.google.com/detail/amazon-command-quickly/adnclnmfdlbkemdddekdhmofeippakhf
Beschreibung Amazonコマンドをワンクリックで追加して実行します
Dateigröße 41.94 KB
Installationsanzahl 4,012
Aktuelle Version 1.0
Letztes Update 2018-08-26
Veröffentlichungsdatum 2018-08-25
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler ゴン
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Amazon Command Quickly",
    "short_name": "ACQ",
    "description": "Amazon\u30b3\u30de\u30f3\u30c9\u3092\u30ef\u30f3\u30af\u30ea\u30c3\u30af\u3067\u8ffd\u52a0\u3057\u3066\u5b9f\u884c\u3057\u307e\u3059",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "version": "1.0",
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.amazon.co.jp\/*",
                "http:\/\/www.amazon.com\/*"
            ],
            "js": [
                "script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    }
}