In Stock
Find any product, in stock nearby. While you are shopping online, we will suggest nearby products that you can buy today.
In Stockとは何ですか?
In Stockはhttps://instock.orgによって開発されたChromeの拡張機能で、その主な機能は「Find any product, in stock nearby. While you are shopping online, we will suggest nearby products that you can buy today.」です。
拡張機能のスクリーンショット
In Stock拡張機能のCRXファイルをダウンロード
In Stock拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Support local businesses with In Stock. More than ever, your local businesses need your help. Find the same products you might buy online from a local retailer (often at lower prices). Get what you need, today. Why wait for 2-day shipping (or longer) when you could go pick it up today from a local store? Locate those hard-to-find products. Whether you need semolina flour for your homemade pasta or a special cord for your computer, we help you find it without having to call around.
拡張機能の基本情報
名前 | In Stock |
ID | chgiobjpldacidandibpniboeeoclpgf |
公式URL | https://chromewebstore.google.com/detail/in-stock/chgiobjpldacidandibpniboeeoclpgf |
説明 | Find any product, in stock nearby. While you are shopping online, we will suggest nearby products that you can buy today. |
ファイルサイズ | 208 KB |
インストール数 | 85 |
現在のバージョン | 1.4 |
最終更新日 | 2021-02-03 |
公開日 | 2020-06-29 |
評価 | 5.00/5 合計 5 レビュー |
開発者 | https://instock.org |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://instock.org |
ヘルプページのURL | https://support.instock.org |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "In Stock", "description": "Find any product, in stock nearby. While you are shopping online, we will suggest nearby products that you can buy today.", "version": "1.4", "content_scripts": [ { "matches": [ "https:\/\/www.amazon.com\/*" ], "run_at": "document_end", "js": [ "superagent.min.js", "content.js" ], "all_frames": true, "css": [ "main.css", "material-icons.css" ] } ], "browser_action": { "default_icon": "instock_logo_square.png", "default_popup": "popup.html" }, "icons": { "16": "instock_logo_square-16.png", "48": "instock_logo_square-48.png", "128": "instock_logo_square-128.png" }, "permissions": [ "https:\/\/wbvbg9rpyh.execute-api.us-west-2.amazonaws.com\/prod\/*", "https:\/\/www.amazon.com\/*" ] } |