Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "linely",
    "$schema": "https:\/\/json.schemastore.org\/chrome-manifest.json",
    "version": "0.1.3",
    "description": "A happy helper to aggregate your order details from online vendors.",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "linely"
    },
    "options_page": "main.html",
    "permissions": [
        "storage",
        "tabs",
        "declarativeNetRequest",
        "declarativeNetRequestFeedback"
    ],
    "host_permissions": [
        "<all_urls>"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.amazon.com\/gp\/css\/summary\/print.html*",
                "https:\/\/*.amazon.com\/your-orders\/orders*",
                "https:\/\/*.amazon.com\/gp\/your-account\/order-history*",
                "https:\/\/*.target.com\/*",
                "https:\/\/target.com\/*",
                "https:\/\/*.walmart.com\/orders*",
                "https:\/\/walmart.com\/orders*",
                "https:\/\/*.lowes.com\/*",
                "https:\/\/*.lowescdn.com\/*",
                "https:\/\/*.costco.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "contentScript.js"
            ],
            "all_frames": true
        }
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}