A bored button

Click the button to open a random boring website.

Vad är A bored button?

A bored button är en Chrome-tillägg utvecklad av fujizx, och dess huvudfunktion är "Click the button to open a random boring website.".

Tilläggsskärmbilder

screenshot

Ladda ner A bored button-förlängningens CRX-fil

Ladda ner A bored button-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Click the button to open a random boring website. 
Take a coffee break and enjoy.                    

Grundläggande Information om Tillägg

Namn A bored button A bored button
ID dcheodehnlbogojafhanldnoddkhmkcj
Officiell webbadress https://chromewebstore.google.com/detail/a-bored-button/dcheodehnlbogojafhanldnoddkhmkcj
Beskrivning Click the button to open a random boring website.
Filstorlek 16.41 KB
Antal Installationer 224
Aktuell Version 1.0.2
Senast Uppdaterad 2023-08-13
Publiceringsdatum 2023-08-10
Utvecklare fujizx
E-post [email protected]
Betalningssätt free
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "A bored button",
    "version": "1.0.2",
    "description": "Click the button to open a random boring website.",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}