Raccoony WebExtension
A WebExtension for adding shiny features to art websites.
什麼是Raccoony WebExtension?
Raccoony WebExtension是由Simon Tesla開發的Chrome擴展程式,該擴展的主要功能是“A WebExtension for adding shiny features to art websites.”。
擴展截圖
下載Raccoony WebExtension擴展crx文件
下載Raccoony WebExtension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
A web extension for Chrome that adds shiny new features like automatic downloading, opening submission lists in tabs, and a fullscreen preview to art sites. Features: - Download submissions from supported art sites and have them organized into folders automatically with one click - Automatically download submissions from supported art sites (if enabled in settings) - Download any image or media from any website with Raccoony via right-click menu - Open all submissions in a gallery or in your watchlist/follower notifications from supported sites in new tabs for easy perusal - Show pictures in a "full-screen" view that covers the entire page, making the artwork front-and-center (and optionally enter this view automatically) - Hotkey support for downloading, opening in tabs and fullscreen - Save metadata (like title and description) in a file alongside the submission (if enabled in settings) - Supported sites: deviantArt, e621, Eka's Portal, FurAffinity, Furry Network, InkBunny, Patreon, Shorpy.com, SoFurry, and Weasyl with others planned or on the way.
擴展基本資訊
名稱 | Raccoony WebExtension |
ID | ejcbnfgeiphhnkmpjggnkkhnbefihelh |
官方網址 | https://chromewebstore.google.com/detail/raccoony-webextension/ejcbnfgeiphhnkmpjggnkkhnbefihelh |
簡介 | A WebExtension for adding shiny features to art websites. |
檔案大小 | 719 KB |
安裝次數 | 1,238 |
目前版本 | 1.2.5 |
更新時間 | 2021-09-08 |
上架時間 | 2020-04-04 |
評分 | 4.67/5 共 9 次評分 |
開發者 | Simon Tesla |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | http://raccoony.thornvalley.com/ |
說明頁面URL | https://github.com/Simon-Tesla/RaccoonyWebEx/issues |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Raccoony WebExtension", "version": "1.2.5", "manifest_version": 2, "description": "A WebExtension for adding shiny features to art websites.", "icons": { "16": "icon-16.png", "32": "icon-32.png", "64": "icon-64.png", "128": "icon-128.png" }, "background": { "scripts": [ "browser-polyfill.js", "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.furaffinity.net\/*", "*:\/\/*.inkbunny.net\/*", "*:\/\/*.weasyl.com\/*", "*:\/\/*.sofurry.com\/*", "*:\/\/*.deviantart.com\/*", "*:\/\/*.furrynetwork.com\/*", "*:\/\/*.e621.net\/*", "*:\/\/*.patreon.com\/*", "*:\/\/*.hiccears.com\/*", "*:\/\/*.aryion.com\/*", "*:\/\/*.shorpy.com\/*", "*:\/\/*.gearfetishx.com\/*", "*:\/\/*.hentai-foundry.com\/*" ], "js": [ "browser-polyfill.js", "page_inject.js" ], "css": [ "overlayUi.css" ], "run_at": "document_start" } ], "web_accessible_resources": [ "delayload.html", "*.png" ], "homepage_url": "http:\/\/raccoony.thornvalley.com\/", "options_ui": { "page": "options.html" }, "permissions": [ "storage", "downloads", "contextMenus", "activeTab", " |