AliBill - AliExpress Invoice Generator
Generate AliExpress invoice from order details.
What is AliBill - AliExpress Invoice Generator?
AliBill - AliExpress Invoice Generator is a Chrome extension developed by kiril.abdulov, and its main feature is "Generate AliExpress invoice from order details.".
Extension Screenshots
Download AliBill - AliExpress Invoice Generator Extension CRX File
Download AliBill - AliExpress Invoice Generator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | AliBill - AliExpress Invoice Generator |
ID | dnnahkenhmcejldgceioeeinbpmmlgbm |
Official URL | https://chromewebstore.google.com/detail/alibill-aliexpress-invoic/dnnahkenhmcejldgceioeeinbpmmlgbm |
Description | Generate AliExpress invoice from order details. |
File Size | 209 KB |
Installation Count | 13,310 |
Current Version | 2.0.8 |
Last Updated | 2024-01-25 |
Publish Date | 2020-10-20 |
Rating | 4.37/5 Total 83 Ratings |
Developer | kiril.abdulov |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | https://infinity8.xyz/privacy-policy.html |
Supported Languages | 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" ] } |