AliBill - AliExpress Invoice Generator

Generate AliExpress invoice from order details.

什么是AliBill - AliExpress Invoice Generator?

AliBill - AliExpress Invoice Generator是由kiril.abdulov开发的Chrome扩展程序,该扩展的主要功能是“Generate AliExpress invoice from order details.”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载AliBill - AliExpress Invoice Generator扩展crx文件

下载AliBill - AliExpress Invoice Generator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Generate AliExpress invoice from order details.

Generate one invoice for multiple orders.

Group Invoice:
1. Go to AliExpress order list
2. Click "Generate one invoice for multiple orders"

Single invoice:
1. Go to AliExpress Order List
2. On right side of every order you have button "Invoice" 
3. Click and generate AliExpress Invoice                    

扩展基本信息

名称 AliBill - AliExpress Invoice Generator AliBill - AliExpress Invoice Generator
ID dnnahkenhmcejldgceioeeinbpmmlgbm
官方URL https://chromewebstore.google.com/detail/alibill-aliexpress-invoic/dnnahkenhmcejldgceioeeinbpmmlgbm
简介 Generate AliExpress invoice from order details.
文件大小 209 KB
安装次数 13,310
当前版本 2.0.8
更新时间 2024-01-25
上架时间 2020-10-20
评分 4.37/5 共83次评分
开发者 kiril.abdulov
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://infinity8.xyz/privacy-policy.html
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AliBill - AliExpress Invoice Generator",
    "version": "2.0.8",
    "manifest_version": 2,
    "description": "Generate AliExpress invoice from order details.",
    "background": {
        "scripts": [
            ".\/src\/lib\/jquery.min.js",
            ".\/src\/content\/dataStorage.js",
            "background.js"
        ],
        "persistent": true
    },
    "icons": {
        "16": ".\/logo\/icon16.png",
        "48": ".\/logo\/icon48.png",
        "128": ".\/logo\/icon128.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "browser_action": {
        "default_title": "AliBill",
        "default_icon": ".\/logo\/icon128.png",
        "default_popup": "popup.html",
        "scripts": "popup.js"
    },
    "options_ui": {
        "page": "opt.html",
        "open_in_tab": true
    },
    "web_accessible_resources": [
        "\/logo\/*",
        "\/src\/*",
        "\/invoice.js",
        "\/opt.html",
        "\/src\/bulma\/bulma.css",
        "\/src\/elements\/modal.html",
        "\/src\/css\/global.css"
    ],
    "content_scripts": [
        {
            "js": [
                ".\/src\/lib\/jquery.min.js",
                ".\/src\/content\/orderDetails.js"
            ],
            "matches": [
                "*:\/\/*.aliexpress.com\/order_detail.htm*",
                "*:\/\/*.aliexpress.ru\/order_detail.htm*",
                "*:\/\/*.aliexpress.us\/order_detail.htm*"
            ],
            "css": [
                ".\/src\/css\/global.css",
                ".\/src\/css\/single.css"
            ]
        },
        {
            "js": [
                ".\/src\/lib\/accounting.min.js",
                ".\/src\/lib\/jquery.min.js",
                ".\/src\/content\/components\/basicVariables.js",
                ".\/src\/content\/ui.js",
                ".\/src\/content\/components\/validator.js",
                ".\/src\/content\/services\/scrape.js",
                ".\/src\/content\/models\/Invoice.js",
                ".\/src\/content\/models\/Options.js",
                ".\/src\/content\/models\/Order.js",
                ".\/src\/content\/models\/OrderItem.js",
                ".\/src\/content\/orderPage.js"
            ],
            "matches": [
                "*:\/\/*.aliexpress.com\/order_list.htm*",
                "*:\/\/*.aliexpress.ru\/order_list.htm*",
                "*:\/\/*.aliexpress.com\/orderList.htm*",
                "*:\/\/*.aliexpress.ru\/orderList.htm*"
            ],
            "css": [
                ".\/src\/css\/global.css",
                ".\/src\/bulma\/bulma-mod.css"
            ]
        },
        {
            "js": [
                ".\/src\/lib\/accounting.min.js",
                ".\/src\/lib\/jquery.min.js",
                ".\/src\/content\/ui.js",
                ".\/src\/content\/models\/Order.js",
                ".\/src\/content\/models\/OrderItem.js",
                ".\/src\/content\/components\/utilities.js",
                ".\/src\/content\/dataStorage.js",
                ".\/src\/content\/components\/newOrderList.js",
                ".\/src\/content\/components\/newOrderDetails.js",
                ".\/src\/content\/components\/newOrderLogistics.js",
                ".\/src\/content\/extra.js"
            ],
            "matches": [
                "*:\/\/*.aliexpress.com\/*",
                "*:\/\/*.aliexpress.ru\/*",
                "*:\/\/*.aliexpress.us\/*"
            ],
            "css": [
                ".\/src\/bulma\/bulma-mod.css",
                ".\/src\/css\/global.css"
            ]
        }
    ],
    "optional_permissions": [
        "*:\/\/*.aliexpress.us\/*",
        "downloads"
    ],
    "permissions": [
        "*:\/\/*.aliexpress.com\/*",
        "*:\/\/*.aliexpress.ru\/*",
        "storage",
        "unlimitedStorage"
    ]
}