Awoobooru

Extra Danbooru functions

Was ist Awoobooru?

Awoobooru ist eine Chrome-Erweiterung, die von I_Copy_Jokes entwickelt wurde, und ihr Hauptmerkmal ist "Extra Danbooru functions".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Awoobooru-Erweiterungs-CRX-Datei herunterladen

Laden Sie Awoobooru-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Adds some small features to Danbooru:
 - Preview and Download links under posts listing
   * Preview opens a modal window with a link to the post and a download link
 - A custom dark mode
 - An additional download button on post pages to easy mass-downloading                    

Grundlegende Informationen zur Erweiterung

Name Awoobooru Awoobooru
ID gafcmengeceombcikkeibggkleiabmmb
Offizielle URL https://chromewebstore.google.com/detail/awoobooru/gafcmengeceombcikkeibggkleiabmmb
Beschreibung Extra Danbooru functions
Dateigröße 137 KB
Installationsanzahl 562
Aktuelle Version 2.0.0
Letztes Update 2022-10-20
Veröffentlichungsdatum 2018-11-20
Bewertung 4.17/5 Insgesamt 6 Bewertungen
Entwickler I_Copy_Jokes
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/TypeA2/Awoobooru
Hilfeseite URL https://github.com/TypeA2/Awoobooru/issues
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Awoobooru",
    "version": "2.0.0",
    "icons": {
        "32": "icon32.png",
        "64": "icon64.png",
        "128": "icon128.png"
    },
    "description": "Extra Danbooru functions",
    "permissions": [
        "tabs",
        "storage"
    ],
    "action": {
        "default_icon": {
            "32": "icon32.png",
            "64": "icon64.png",
            "128": "icon128.png"
        },
        "default_title": "Awoobooru",
        "default_popup": "html\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.donmai.us\/*"
            ],
            "js": [
                "scripts\/bootstrap.bundle.min.js",
                "scripts\/content.js"
            ],
            "css": [
                "css\/bootstrap.min.css",
                "css\/global.css",
                "themes\/dark.css"
            ],
            "run_at": "document_end"
        }
    ]
}