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.」です。

拡張機能のスクリーンショット

screenshot

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 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
Eメール [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",
        ""
    ]
}