Greasy Fork

Greasy Fork is available in English.

📸 图片抓取器 (Picture Taking)

全页面图片扫描 | 增量抓取 | 一键复制 | 面板记忆 | UI 磁吸靠边

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

作者
AllureLove98
日安装量
0
总安装量
19
评分
0 0 0
版本
15.1
创建于
2026-02-27
更新于
2026-02-27
大小
13.1 KB
许可证
MIT
适用于
所有网站

📸 Picture Taking

A universal image grabber userscript based on Tampermonkey.
支持全页面图片抓取 / 增量扫描 / UI记忆 / 磁吸停靠 / 一键复制




🌏 Language | 语言

  • 🇨🇳 中文
  • 🇺🇸 English

🚀 Online Install | 在线安装

🔥 GreasyFork (Recommended / 推荐)

👉 Click To Install | 点击安装

Requires:

  • Tampermonkey
  • Violentmonkey

🏠 Repository | 项目仓库

GitHub:

👉 https://github.com/AllureLove98/picture-taking

⭐ Star this project if you like it!


✨ Features | 功能

中文

  • 🔍 全页面图片扫描
  • ♻️ 增量抓取(避免重复)
  • 🧹 一键重置扫描
  • 📋 一键复制所有链接
  • 🖼 点击放大图片
  • 📌 磁吸式悬浮按钮
  • 📐 面板尺寸记忆
  • 📍 面板位置记忆

English

  • 🔍 Full page image scanning
  • ♻️ Incremental capture
  • 🧹 Reset scanning cache
  • 📋 One-click copy all URLs
  • 🖼 Click to zoom image
  • 📌 Magnetic floating UI
  • 📐 Panel size memory
  • 📍 Panel position memory

📦 Installation | 安装步骤

① Install Extension | 安装扩展

Browser Extension
Chrome / Edge Tampermonkey
Firefox Tampermonkey / Violentmonkey

② Install Script | 安装脚本

  1. Open Tampermonkey
  2. Create new script
  3. Paste .user.js code
  4. Save

Done ✅


🚀 Usage | 使用方法

Action Function
📸 Click Open / Close panel
🔍 Scan Increment scan
🧹 Reset Clear cache & rescan
📋 Copy All Copy all URLs
Click Image Open in new tab
Drag Button Move floating UI

🧠 Technical Principle | 技术原理

Script scans DOM elements:

  • <img>
  • <video poster>
  • background-image
  • :before
  • :after

Using Set for deduplication:

let urlStore = new Set();
let processedRawUrls = new Set();