Random Newtab Image

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

Random Newtab Image क्या है?

Random Newtab Image lisheng द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Set chrome new tab image which is choosed from bing, artstation, flickr! Will replace the original default tab."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Random Newtab Image एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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]).                    

एक्सटेंशन की मूल जानकारी

नाम Random Newtab Image Random Newtab Image
ID gbikeliglehfocdcmohamnnjhepmldem
आधिकारिक URL https://chromewebstore.google.com/detail/random-newtab-image/gbikeliglehfocdcmohamnnjhepmldem
विवरण Set chrome new tab image which is choosed from bing, artstation, flickr! Will replace the original default tab.
फ़ाइल का आकार 199 KB
स्थापना संख्या 313
वर्तमान संस्करण 1.7.5
अंतिम अपडेट 2020-07-21
प्रकाशन तिथि 2019-12-21
रेटिंग 4.29/5 कुल 7 रेटिंग्स
डेवलपर lisheng
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
    ]
}