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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 URL | 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", " |