You haven't signed in yet, you can have a better experience after signing in
You haven't signed in yet, you can have a better experience after signing in
Activity Rules
1、Activity time:{{ info.groupon.start_at }} ~ {{ info.groupon.end_at }}。
2、Validity period of the Group Buying:{{ info.groupon.expire_days * 24 }} hours。
3、Number of Group Buying:{{ info.groupon.need_count }}x。
Please Pay Attention
1、Teamwork process: Join/initiate a Group Buying and make a successful payment - Within the validity period, the number of team members meets the activity requirements - Group Buying succeeded!
2、If the number of participants cannot be met within the valid period, the group will fail, and the paid amount will be refunded in the original way.
3、The number of people required and the time of the event may vary among different products. Please pay attention to the rules of the event.
PicHound Browser Web Page Image Batch Download Editing Management Plugin Tool
PicHound is a free, powerful, and easy-to-use Google Chrome browser plugin that allows users to quickly and easily manage and process large amounts of images through a WYSIWYG approach.
Suitable for use scenarios
Why use Pichound?
If you often need to process a large number of images, this plugin is definitely your best choice. Let's take a look at its cool features together! ✨
Supports immediate download of individual images, while also providing multiple download options. You can compress multiple images into a ZIP file, easily save the entire collection with just one click, or choose to save them separately as individual files according to your needs.
Supports various filtering options such as path, domain name, size, etc., allowing you to quickly locate the desired image. You will no longer need to spend time and effort manually searching.
Provide powerful on-site editing functions, giving you the ability to make various adjustments, including fine-tuning, cropping, adding annotations, adding watermarks, applying filters, and resizing. With these features, your image editing work is no longer restricted. Whether it's enhancing visual effects, adding personal style, or resizing images, you have tools to do it all.
The reverse image search function can quickly locate similar images, allowing you to explore various possibilities in depth. It supports multiple channels such as Google and Yandex, and will also support customizable channels in the future to further expand your search capabilities.
Operate within the same screen without opening additional windows. This allows you to quickly edit and manage images while browsing the website, greatly improving efficiency.
Most of the features of the plugin are free, and restrictions can be reset by simply refreshing the page. However, if you find it helpful, consider upgrading to unlock more exciting features. Thank you very much for your support!
Specially designed for you
A tool that allows for quick and easy management and processing of large amounts of images in a WYSIWYG manner. Whether you are engaged in cross-border e-commerce, advertising industry, or seeking inspiration as a designer, this tool will be your reliable assistant.
Search for pictures with pictures
The reverse image search function can quickly locate similar images, allowing you to explore various possibilities in depth. It supports multiple channels such as Google and Yandex, and will also support customizable channels in the future to further expand your search capabilities.
Sidebar layout
Operate within the same screen without opening additional windows. This allows you to quickly edit and manage images while browsing the website, greatly improving efficiency.
More features
PicHound is constantly developing and launching more practical features. If you have any questions or suggestions, please feel free to contact us at any time. Looking forward to your feedback, let's work together to create a more complete plugin! 📢
Official website:https://pichound.app/zh_CN
Download Center:https://pichound.apsgo.cn
Usage guide:https://help.pichound.app/zh
Delivery time:24-hour automatic shipping
Operating platform:Chrome plugin
Interface language:Supports Chinese interface display.
Update instructions:The manufacturer promises to purchase once, use and update for life.
Pre purchase trial:Free trial before purchase.
How to receive the goods:After purchase, the activation information will be sent to the email address at the time of placing the order, and the corresponding product activation code can be viewed in the personal center, My Orders.
Number of devices:Can install 3 computers.
Replacing the computer:Uninstall the original computer and activate the new computer.
Activation guidance:To be added.
Special instructions:To be added.
reference material:https://pichound.app/zh_CN
Any question
The official has built-in one click download function for the main image, SKU image, and detail image of a certain e-commerce website, and also supports custom extraction of high-definition images.
The custom JSON template configuration function can configure regular expressions for a website's webpage code, allowing plugins to dynamically expand the supported websites.
Readers and users of this article need to possess the following abilities:
1. Understand basic web front-end technologies such as HTML, JavaScript, CSS, AJAX, etc., in order to better understand web page structure and code logic, and provide a foundation for configuring regular expressions.
2. Proficient in using developer tools for Chrome browser, able to use the tool for web page analysis, debugging, and viewing code structure, providing strong support for the configuration process. Proficient in using regular expressions and tools, mastering the syntax and rules of regular expressions, and able to accurately extract the required webpage content.
3. Possess self-learning and problem-solving abilities, actively learn and explore solutions when encountering problems during use, to ensure the smooth completion of configuration work.
Usage scenarios
Step 1:Confirm the Dom structure of the images that need to be collected
Open F12 on the corresponding website, as shown in the figure below, and find the corresponding comic structure.
As shown in the figure, the current selector is
#comicContain img
Infer the downloadable list as follows
[...document.querySelectorAll(`#comicContain img`)].map(o => o.src)
Visible on the console:
Step 2:Fill Template
Universal comic download template, of course, there are also more complex scenarios:
{
"id": 90005,
"name": Tencent Comics,
"ico": "https://oss.floweb.cn/ac.qq.com",
"version": "24.12.01",
"description": Support ac.qq.com image download, one click download of images,
"reg": "ac.qq.com",
"tags": [
"manhua"
],
"status": "prod",
"examples": [
"https://ac.qq.com/ComicView/index/id/543584/cid/1"
],
"groups": [
{
"fn": "updateGroupByIds",
"props": {
& nbsp; & nbsp; & nbsp; "groupName": Chapter ",
"groupIndex": 1,
"source": "[...document.querySelectorAll(`#comicContain img`)].map(o => o.src)",
"ids": [
{
"attributes": [],
"replaceUrlRules": [
{
"pattern": "!q.*$",
"replaceValue": "?desc"
}
]
}
]
}
}
]
}
Particular attention
The current key changes are: Source keyword
Tip: Dynamically generating icons can be done using the Floweb tool. For more information, please refer to the Floweb tool; www.floweb.cn
Add to smart script:
Step 3:Custom file name:
Jump to the download page:
Download directly:
All JSON interface semantics
export interface IGroupConfig {
// Unique ID
id: number;
// Plugin Name
name: string;
// Plugin icon
ico?: string;
// Plugin version
version?: string;
// Plugin Description
description?: string;
// Default matching path
reg: string;
// Pre script
prevJS: string;
// Plugin grouping function
groups: IRun[];
// Release status
status?: string;
// example
examples?: string[];
}
export interface IRun {
// Function capability
fn: string;
// Additional transmission reference
props: IRunProps;
}
export interface IIds {
// Parameter Ids
id: string;
// Parameter Path
attributes?: string[];
// Type, possibly video type
type?: string;
// Image description information
alt?: string;
// Replace Image Rules
replaceUrlRules?: IReplaceUrlRule[];
// Filter image rules
filterUrlRules?: IReplaceUrlRule[];
}
export interface IReplaceUrlRule {
// Replace regular
pattern: string
// Regular local/full matching
flags?: string
// Replace value
replaceValue?: string
}
export interface IRunProps {
// The default source object is document.querySelectorAll, which returns an iterable array
source?: string;
// Parameter Ids
ids: IIds[];
// Group name
groupName: string;
// Group index
groupIndex: number;
}