Sourcing Secret Chrome Extension

This extension auto-populate description text.

Sourcing Secret Chrome Extension là gì?

Sourcing Secret Chrome Extension là một tiện ích mở rộng Chrome được phát triển bởi http://sourcingsecret.com, và tính năng chính của nó là "This extension auto-populate description text.".

Ả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 Sourcing Secret Chrome Extension

Tải xuống các tệp mở rộng Sourcing Secret Chrome Extension 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

                                            

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

Tên Sourcing Secret Chrome Extension Sourcing Secret Chrome Extension
ID indglgdhbhcmmkeflbmbiahcdkdmncac
URL Chính Thức https://chrome.google.com/webstore/detail/sourcing-secret-chrome-ex/indglgdhbhcmmkeflbmbiahcdkdmncac
Mô tả This extension auto-populate description text.
Kích Thước Tệp 60.73 KB
Số Lần Cài Đặt 187
Phiên Bản Hiện Tại 1.7
Cập Nhật Lần Cuối 2018-10-12
Ngày Phát Hành 2018-10-12
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển http://sourcingsecret.com
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "icons": {
        "128": "icon_128.png"
    },
    "name": "Sourcing Secret Chrome Extension",
    "short_name": "SSCE",
    "description": "This extension auto-populate description text.",
    "version": "1.7",
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "favicon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.amazon.com\/gp\/product\/*",
                "https:\/\/www.amazon.com\/*\/dp\/*",
                "https:\/\/www.amazon.com\/dp\/*"
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "contentscript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "https:\/\/app.sourcingsecret.com\/*"
    ]
}