Amazon Command Quickly

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

Hvad er Amazon Command Quickly?

Amazon Command Quickly er en Chrome-udvidelse udviklet af ゴン, og dens hovedfunktion er "Amazonコマンドをワンクリックで追加して実行します".

Udvidelsesskærmbilleder

screenshot

Download Amazon Command Quickly-udvidelses-CRX-fil

Download Amazon Command Quickly-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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の商品)

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

Grundlæggende oplysninger om udvidelsen

Navn Amazon Command Quickly Amazon Command Quickly
ID adnclnmfdlbkemdddekdhmofeippakhf
Officiel URL https://chromewebstore.google.com/detail/amazon-command-quickly/adnclnmfdlbkemdddekdhmofeippakhf
Beskrivelse Amazonコマンドをワンクリックで追加して実行します
Filstørrelse 41.94 KB
Antal Installationer 4,012
Nuværende Version 1.0
Senest Opdateret 2018-08-26
Udgivelsesdato 2018-08-25
Bedømmelse 5.00/5 Samlet 3 Bedømmelser
Udvikler ゴン
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
    }
}