Shopify App Detector by Fera.ai

Detect which apps and what theme a Shopify store is using. Built and maintained by Fera.ai and the community.

Shopify App Detector by Fera.ai là gì?

Shopify App Detector by Fera.ai là một tiện ích mở rộng Chrome được phát triển bởi https://www.fera.ai, và tính năng chính của nó là "Detect which apps and what theme a Shopify store is using. Built and maintained by Fera.ai and the community.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Shopify App Detector by Fera.ai

Tải xuống các tệp mở rộng Shopify App Detector by Fera.ai dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        The Shopify App/Theme Detector by Fera.ai lets you detect which Shopify apps and are being run on a specific Shopify store, as well as what theme it is using (if it is not completely custom).

FOR SECURITY ASSURANCE THE SOURCE CODE IS PROVIDED at https://github.com/feracommerce/shopify_app_detector so you don't have to worry about the excessive permissions this extension requires. 

Please let us know what you think or if there are any apps you wish we could detect. If you're a developer please contribute to the project at https://github.com/feracommerce/shopify_app_detector.

This app is maintained for free by the developer community and the Fera.ai product reviews app for Shopify, BigCommerce and other eCommerce platforms.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Shopify App Detector by Fera.ai Shopify App Detector by Fera.ai
ID lhfdhjladfcmghahdbcmlceajdlbkale
URL Chính Thức https://chromewebstore.google.com/detail/shopify-app-detector-by-f/lhfdhjladfcmghahdbcmlceajdlbkale
Mô tả Detect which apps and what theme a Shopify store is using. Built and maintained by Fera.ai and the community.
Kích Thước Tệp 185 KB
Số Lần Cài Đặt 44,125
Phiên Bản Hiện Tại 0.6.2
Cập Nhật Lần Cuối 2021-07-07
Ngày Phát Hành 2020-05-31
Đánh Giá 3.97/5 Tổng số 58 Đánh Giá
Nhà Phát Triển https://www.fera.ai
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.github.com/feracommerce/shopify_app_detector
URL Trang Trợ Giúp https://github.com/feracommerce/shopify_app_detector/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Shopify App Detector by Fera.ai",
    "description": "Detect which apps and what theme a Shopify store is using. Built and maintained by Fera.ai and the community.",
    "version": "0.6.2",
    "author": "Fera.ai",
    "homepage_url": "https:\/\/www.github.com\/feracommerce\/shopify_app_detector",
    "icons": {
        "16": "img\/icons\/detector.png",
        "48": "img\/icons\/detector.png",
        "128": "img\/icons\/detector.png"
    },
    "browser_action": {
        "default_icon": "img\/icons\/detector-disabled.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "lib\/zepto\/zepto.min.js",
            "js\/sad.js",
            "data\/shopify_apps.js",
            "data\/shopify_themes.js",
            "js\/detector.js",
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "exclude_matches": [
                "https:\/\/*.google.com\/*",
                "https:\/\/*.facebook.com\/*"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "lib\/zepto\/zepto.min.js",
                "js\/sad.js",
                "js\/content.js"
            ],
            "run_at": "document_end"
        }
    ]
}