全部应用

MailKing: Email Campaigns in Gmail by cloudHQ
4.6
-----------------------
直接从Gmail发送短消息提示和群发电子邮件 MailKing 负责两种非常重要的与您的受众沟通的方法: 1) 电子邮件:MailKing 是一种电子邮件营销软件,可以消除电子邮件自动化中的猜测。 2)短信:MailKing也是一款短信营销软件,非常适合用于短信提醒、公告、活动等。 让我们仔细看看它们: 1. 邮箱: 首先,请务必注意,此电子邮件营销解决方案与竞争对手的区别在于,您的电子邮件是从您的 Gmail 帐户发送的,与通过亚马逊或微软等大型云服务器发送相比,这可以保证您获得更高的打开率。 Google 可以了解电子邮件何时作为电子邮件群发发送,而不是看起来更私人的电子邮件,例如从您的电子邮件地址发送到另一个人的电子邮件地址。 以下是 MailKing 的电子邮件营销活动功能列表: ✅ 更高的打开率 ✅ 根据 Gmail 发送限制每天最多发送 2000 封电子邮件,升级到高级计划以删除底部的徽标 ✅ 从 Mailchimp、Yesware、Salesforce、Zoho 和其他 CRM 上传 CSV 文件 ✅ 通过合并标签根据姓名、电子邮件地址或任何可用信息个性化群发电子邮件 ✅ 提供非常理想的电子邮件模板,并每天更新 ✅ 跟进可用的电子邮件活动 ✅ 在报告中为您跟踪打开率和点击率 ✅ 直接从您自己的 Gmail 帐户创建和发送电子邮件活动 非常适合: - 希望更快地完成更多交易的销售人员。 - 小公司和承包商的营销电子邮件。 - 想要提高电子邮件效率的狂热电子邮件用户。 2. 短信营销 MailKing 为您提供发送大量文本活动的能力,这非常适合用作工作分配、事件等的文本消息提醒。你可以: ✅个性化您的短信 ✅ 发送群发短信,例如:“明天早上 8 点在自助餐厅免费注射 COVID” ✅ 使用以上两者的任意组合,就像我们在电影中所做的那样:https://www.youtube.com/watch?v=TsM03cSnruM 我们将有关学生进步的个性化消息与有关课堂作业的批量消息结合在一起那是由于。 以这种方式使用短信可以简化沟通,并让您向团队发送急需的短信提醒。不要拖延尝试这是多么容易使用。只需使用 cloudHQ 提供的一些简单技巧,您就可以节省时间并成为组织团队中的顶级制作人。 非常适合: - 律师让他们的客户完成表格并更新他们的工作 - 老师提醒学生作业到期 - 想要提醒员工有关 Covid 规则的公司 - 想要提醒客户开放日的房地产经纪人 - 正在组织项目的团队领导 无论哪种方式,无论您如何进行沟通都不会出错。电子邮件或短信营销,我们为您服务。 云总部。帮助您提高工作效率,一次单击 1。"
Bookmark Dupes
4.9
-----------------------
显示/移除重复的书签或空文件夹 # bookmarkdupes (C) Martin Väth <martin@mvath.de>, <mvath.develop@gmail.com> This project is under the GNU Public License 2.0. A WebExtension which can display/remove duplicate bookmarks, empty folders, or descriptions After installing bookmarkdupes, the usage is rather simple: To open bookmarkdupes, click the extension symbol (duplicate stars) or use the link in the options page of the extension. **Do not enable “Expert Mode”** (unless you fully understand the consequences, see separate section). Then select what you want to display: 1. Bookmark duplicates 2. Empty folders 3. Non-duplicate bookmarks After this, you will be offered the list of bookmarks with checkboxes; in case 1 the numbers indicate the order in which matching bookmarks were added according to the internally stored date. There are also buttons to select/unselect convenient sets of checkboxes. Finally, there are buttons to remove the selected bookmarks. **Be aware that removing bookmarks is irreversible!** *It is recommended to make backups of your bookmarks first!* Currently, there is no working version of the extension available for android (see section **Known Bugs**). ## Important When you reorganized/added/removed bookmarks, make sure to update the displayed list (by pressing the corresponding button) before removing bookmarks! ## Permissions The extension requires the following permissions for these reasons: 1. “bookmarks” to read/modify bookmarks 2. “storage” to store/restore the customized rules in expert mode. Unfortunately, “storage” is not one of the optional permissions which might be required only if that feature is actually requested by the user. ## Expert Mode When selecting the checkbox for expert mode, details can be configured to ignore certain bookmarks when calculating the list or under which cases bookmarks are considered to be dupes of each other. In non-expert mode, two bookmarks are considered to be duplicates of each other if their URL coincides. In expert mode there are custom rules by which the URL which is actually used for comparison is to be modified. The details are as follows. For every bookmark the rules are applied in the given order. There are 2 types of rules: Filter rules and URL modification rules (there are also disabled rules which are only listed but have no effect). For both types of rules 4 regular expressions can be specified which are used to determine if the rule applies: If the corresponding regular expression is nonempty, the corresponding condition must be satisfied or the rule will not apply. (In the case of filter rules, at least one of these 4 regular expressions must be nonempty or that filter rules will not apply either.) The 4 regular expressions refer to the bookmark's name or url, respectively, and the regular expressions must either match or not match, respectively. - The term “regular expression” refers to a javascript type regular expression. - The bookmark's name refers to the full bookmark path as it appears in the browser with folder names separated by the null character. For instance, if you have in “Bookmark Menu” a folder “Collection” which contains your bookmark ""Example"", the bookmark's name becomes `Bookmark Menu\0Collection\0Example` (where `\0` denotes the null character which can be matched by the regular expression with `\0` or `\x00`). - The bookmark's URL refers to the bookmark URL after possible modifications by previous modifier rules. If a filter rule applies, the corresponding bookmark is ignored, i.e., it will not be considered as a duplicate and will neither appear in the list of empty folders nor of all bookmarks. If a URL modification rule applies, a text replacement will occur: All parts matching a specified regular expression are substituted by a replacement text (which might be empty). The rules for this correspond to the javascript String.prototype.replace function with the global modifier. In particular, the replacement text can contain symbols like `$&` or `$1` to refer to the whole matched text or to the match of the first brace in the regular expression, respectively. The following 5 replacement texts have a special meaning which goes beyond the standard javascript replacement rules. Note that this special meaning is only active if this is the full replacement text. In other words, to get the special meaning, the replacement text must not contain anything else than these 4-6 characters. (This does not really restrict the functionality, because one can combine several rules to work around that limitation if necessary.) 1. `\L$&` is the match in lower case. 2. `\U$&` is the match in upper case. 3. `$URL` is the url before any other rules have been applied. 4. `$NAME` is the bookmark's full name/path with folders separated by the null character, e.g. “Bookmark Menu\0Collection\0Example” 5. `$TITLE` is the bookmark's title without the path; for instance, for the bookmark name “Bookmark Menu | Collection | Example” it is “Example”. ## Examples for special tasks which can be done in Expert Mode ### Task 1. Consider two bookmarks as duplicate if their URL differs only in `https:` vs. `http:` at the beginnning. 2. Consider two bookmarks as duplicate if their URL matches up to the first `?` symbol, i.e. only their additional information differs. 3. Do not consider any bookmark from any folder named ``Mr. Dupe`` as a duplicate. 4. Add all bookmarks to the list of duplicates, whether duplicate or not. 5. Add all bookmarks from the folder `Bookmark Menu | Remove` to the list of duplicates (no matter whether they actually are duplicates). 6. Consider two bookmarks as duplicate if they have the same name (instead of the same URL). 7. Consider two bookmarks as duplicate if they reside in the same folder. ### How to do the above tasks in Expert Mode 1. Use the replacement rule: “Replace URL matches” `^http:` “by” `^https:` Explanation: By replacing everywhere the URL beginnning with `http:` by `https:`, it does not matter whether the actual URL started with `http:` or `https:`. Of course, we could have exchanged the roles of `http` and `https` in our rule. 2. Use the replacement rule: “Replace URL matches” `\?.*` “by” ` ` (empty string) Explanation: Simply omit the ? symbol and all other symbols following it in all URLs. 3. Use the filter rule: “Name matches” `\0Mr\. Dupe\0` or `\0Mr[.] Dupe\0` Explanation: If a bookmark is in a folder named “Mr. Dupe”, its full name (path) will contain the text “\0Mr. Dupe\0”; so match that text. Since the “.” symbol has a special meaning for regular expressions, we have to quote it. This can be done by either `\.` or by looking for a character class `[…]` which contains only the single symbol `.`. 4. Use the replacement rule: “Replace URL matches” `.+` “by” `constant` Explanation: Pretend that every bookmark has the URL `constant` by replacing all characters (`.+`) of the original URL by that text. 5. Use the replacement rule: “Name Matches” `^Bookmark Menu\0Remove\0` “Replace URL matches” `.+` “by” `constant` As in 4, but only for bookmarks whose full name starts with the matching path. This works only if the folder contains at least 2 bookmarks (because otherwise `constant` is not a duplicate URL). Of course, one might use an actually duplicate URL instead of `constant` to work around this limitation. 6. Use the replacement rule: “Replace URL matches” `.+` “by” `$TITLE` Explanation: Replace all bookmark URLs by the corresponding bookmark title when looking for dupes. 7. Use the replacement rule “Replace URL matches” `.+` “by” `$NAME` followed by a further replacement rule “Replace URL matches” `[^\0]*$` “by” ` ` (empty string) Explanation: First replace the URL by its full name path, and then omit the last component of this path by cutting of the longest sequence of non-`\0`-symbols at the end. ## Contributors (in alphabetical order) - Henaro aka Ironwool (Russian and Ukrainian translation; redesign icon in svg; provide favicon) - Juan Salvador Aleixandre Talens (Spanish translation) - YFdyh000 (Simplified Chinese translation)"
Ali Reviews
4.3
-----------------------
阿里评论 - 推动增长的令人惊叹的社会证明 阿里评论受到40,000+ Shopify商家的信赖,拥有数千条5*评论,阿里评论不仅可以帮助您收集和展示评论,还可以将评论变成最有效的营销材料并提升您的转化率。 了解阿里点评如何帮助您发展业务: ⭐ 精美的评论小部件,让您的品牌大放异彩 各种引人注目的小部件以及模板,可以在任何页面上展示评论,而不会对商店速度产生任何影响。 - 产品页面上多种布局(列表/网格/轮播)的现代评论小部件,让客户在购买前清楚了解产品 - 主页上的轮播滑块可增强访问者对您品牌的认知,将其保留在页面上,增加购买的可能性 - 购物车页面小部件显示购物车内产品的评论,以同步从看到到思考、有趣和购买的购物体验 ⭐ 通过多种方式轻松收集评论并轻松管理 - 通过 CSV 上传安排手动请求 - 通过电子邮件、短信、Facebook Messenger、DM 或任何销售渠道使用 p-made 模板发送自动审核请求 - 使用二维码生成器扫描即可轻松获得即时评论 - 提供折扣以鼓励更多精彩的照片评论 - 直接从 AliExpss 或通过 DSers/Oberlo 应用程序收集照片评论以进行代发货业务 - 在一个地方轻松管理所有评论 ⭐ 向合适的受众显示评论以提高转化率 将评论变成有效的营销材料最重要的是能够展示正确的目标受众 - 根据访问者在商店中的在线行为(购物车内的产品、查看过的产品)以及 Shopify 提供的其他个人信息(地理位置/AOV/购买历史记录),在商店的任何页面上向正确的访问者显示最相关的评论 ⭐ 强大的附加功能 - 通过安排和批量请求过去的订单以及自动电子邮件提醒来节省您的时间 - 回复客户评论,向他们表明您的关心,他们会更信任您 - 通过将评分和星级标记添加到 Google Search Console 来改进您的 SEO 丰富摘要 - 通过将评论推送到 Facebook、Twitter 和 Pinterest 来增加自然流量 - 将经过验证的评论联合到 Google 购物,显示在自然搜索结果和付费 Google 结果中 - 弹出来自最近买家的评论以吸引访客,其效果与销售弹出类似 ⭐ 轻松设置和 24/7 支持 - 无需编码 - 自动与您的主题和 CSS 样式集成 - 使用 Shopify 在线商店 2.0 主题 - 24/7 提供世界一流的支持 阿里评论 - 通过客户评论拓展您的业务"
Alichrome - Free Invoice generator
3.6
-----------------------
Extract your AliExpress order details to a printable PDF The free extension to download an invoice on AliExpress using Google Chrome. The free AliExpress invoice generator plugin allows you to download the your AliExpress receipt. ✜ Download To use our “AliExpress Invoice” extension, simply follow the procedure below: ▻ Find “AliExpress invoice free” directly on the Google Web Store ▻ Press “Add to Chrome” which downloads the tool to your computer ✜ Use There will thus be two possibilities to download your receipts: From the extension a) By pressing “My Orders” b) Following procedure 2) directly on AliExpress Directly on the website, a) Go to the website by logging into your account b) Then click on the “View details” button c) a button appears with “Download PDF INVOICE” This button is displayed on all your orders, you just have to keep the extension installed on your browser it will work during all your orders. This extension is useful both for generating an Aliexpress invoice for customs. ✜ AliExpress It's a website for connecting different merchants with buyers, the interface connecting buyers and sellers. The platform sends an order confirmation email but does not take care of providing you with the justification for purchases after purchasing your products ordered on the site and receiving your order. To be able to justify in your accounts, your expense report or even track your purchases, the ""AliExpress bill"" extension allows you to generate order PDFs, this is a layout of the justified order. On Ali-express the VAT invoice is not automatic because the law and tax rules are not the same in each country, this extension allows you to generate an order PDF file to justify your costs and to issue a file similar to the purchase receipt. ✜ Customs In case of customs control, you may need to justify your purchases, or when purchasing from dropshipping, you may need to obtain a receipt from Alibaba; by installing the AliExpress download invoice. Usage corresponds perfectly to Ali customs bill or Ali-Express dropshipping invoice. ✜ Operation This extension works the same way Ali invoice however it works free of charge and without subscription. ✜ Legal We are in no way related to Alibaba Inc, AliExpress Inc, or any of Alibaba's subsidiaries. Our extension allows you to generate PDFs to allow you to justify your purchases and simplify your accounting, it is not an invoice in the French legal sense of the term because it is not issued by the Alibaba company or reseller ( https://www.economie.gouv.fr/entreprises/factures-mentions-obligatoires). Nevertheless, our software does not make fake receipts as it only issues documents that have been paid and confirmed by Alibaba. SAS AUNALA, responsible for creating the software, is not responsible for your use of these documents. You can find our privacy policy here: http://aliexpress-invoice.com/privacy-and-cookies-policy.html ✜ Privacy and collection We do not collect any of your personal data, only anonymous data is sent to Google Analytics for statistical purposes. Your data are collected securely and never leaves your browser, it is used to generate the documents and add the download button. The extension is free and will remain so. Nevertheless, by downloading this software and accepting the general conditions of sale, you agree that there is a sharing of data of your orders (no collection of personal data) between AliExpress and the extension. To create the PDF document and that the creators of the software be paid by Alibaba in percentage as business introducers. This system makes it possible to make the extension free for users and to pay the costs relating to the creation and maintenance of this software"
OpenOffice Calc在线为xls电子表格
3.7
-----------------------
使用OpenOffice Calc在线创建和编辑xls和xlsx电子表格 OpenOffice Excel online for XLS 电子表格是一个扩展,允许创建、编辑和查看任何 xls 和 xlsx 格式的 Microsoft Excel 电子表格。它是一个与我们的文件管理器集成的电子表格处理器,可使用此桌面应用程序仅管理 XLS 文件类型。 OpenOffice Excel 的主要功能是: - 指导您选择和使用全面的高级电子表格功能的向导。 - 灵活的单元格格式选项:旋转内容、模板、背景、边框等等。 - 交叉制表和总结的可能性。 - 使用单词创建公式。 - 智能求和按钮根据上下文自动插入求和函数或小计。 - 扩展库中用于现成电子表格解决方案的模板范围。 - 高级样式和格式。 - 以 OpenDocument 格式保存您的电子表格,这是办公文档的新国际标准。但是您可以自由使用旧的 Microsoft Excel 电子表格,或将您的工作保存为 Excel 格式或使用便携式文档格式 (.pdf)。 - 与文件管理器集成以保存、上传和下载 xls 文件。 此扩展使用平台 http://www.offidocs.com。它是与 Open Office Linux 桌面应用程序的集成。具体来说,它是一个通过我们的 OffiDocs API 运行的桌面应用程序。它可供免费在线用户使用,但也允许与高级用户和安装了 OffiDocs OpenOffice Excel 的本地 OffiDocs 部署集成。 重要提示:此扩展程序会扫描浏览的 URL 以检测 XLS 文件。 检测到的 XLS 文件出现在从我们的服务器检索的扩展弹出窗口中的列表中。 扫描是从我们的服务器执行的,因此您的 URL 会报告给我们的系统。 不收集任何个人数据。 可以使用扩展弹出窗口中显示的复选框来禁用此扫描。 如果禁用此扫描,则此功能不可用,因此扩展功能非常有限。"