Random Newtab Image

Set chrome new tab image which is choosed from bing, artstation, flickr! Will replace the original default tab.

Was ist Random Newtab Image?

Random Newtab Image ist eine Chrome-Erweiterung, die von lisheng entwickelt wurde, und ihr Hauptmerkmal ist "Set chrome new tab image which is choosed from bing, artstation, flickr! Will replace the original default tab.".

Erweiterungsscreenshots

screenshot
screenshot

Random Newtab Image-Erweiterungs-CRX-Datei herunterladen

Laden Sie Random Newtab Image-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

                        Randomly choose images from bing, artstation, flickr as your chrome newtab image.
According to Google's policy, this extension will replace your default tab.

The extension can also set Windows10 desktop image with the help of a local exe.
download: https://www.dropbox.com/s/yzpskpatgohhvvs/RandomBackground.msi?dl=0
Source Code: https://github.com/abucraft/RandomBackgroundChromeExt 

Any problem please send email to me([email protected]).                    

Grundlegende Informationen zur Erweiterung

Name Random Newtab Image Random Newtab Image
ID gbikeliglehfocdcmohamnnjhepmldem
Offizielle URL https://chromewebstore.google.com/detail/random-newtab-image/gbikeliglehfocdcmohamnnjhepmldem
Beschreibung Set chrome new tab image which is choosed from bing, artstation, flickr! Will replace the original default tab.
Dateigröße 199 KB
Installationsanzahl 313
Aktuelle Version 1.7.5
Letztes Update 2020-07-21
Veröffentlichungsdatum 2019-12-21
Bewertung 4.29/5 Insgesamt 7 Bewertungen
Entwickler lisheng
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "version": "1.7.5",
    "default_locale": "en",
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "permissions": [
        "https:\/\/*.flickr.com\/*",
        "https:\/\/*.artstation.com\/*",
        "https:\/\/*.bing.com\/*",
        "nativeMessaging"
    ],
    "optional_permissions": [
        "background"
    ],
    "chrome_url_overrides": {
        "newtab": "newtab.html"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "background": {
        "scripts": [
            "lib\/utils.js",
            "lib\/jquery-3.2.0.min.js",
            "bg\/log.js",
            "bg\/imageUrlLoader.js",
            "bg\/bingImageUrl.js",
            "bg\/artstationImageUrl.js",
            "bg\/flickrImageUrl.js",
            "bg\/background.js"
        ]
    },
    "web_accessible_resources": [
        "cs\/setting.html",
        "icon.png"
    ]
}