Raccoony WebExtension

A WebExtension for adding shiny features to art websites.

Raccoony WebExtensionคืออะไร?

Raccoony WebExtension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Simon Tesla และคุณลักษณะหลักของมันคือ "A WebExtension for adding shiny features to art websites."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Raccoony WebExtension

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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",
        ""
    ]
}