Flickr New Tab

Load the new tab page with a photo from Flickr Stream. You can choose the type of photos that you want to see.

Flickr New Tab क्या है?

Flickr New Tab SubramaniaShiva द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Load the new tab page with a photo from Flickr Stream. You can choose the type of photos that you want to see."।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Refresh yourself by seeing a new photo from Flickr public stream every time you open a new tab. 

2 reasons why you should install this plugin when there are other similar plugins like this in chrome store:

1) This extension allows you to choose the type of images that you want to see when you open a new tab.  You can do this by giving the tags of your choice. For example, if you are a nature lover like me, you can give tags like "nature, forest, trees, greenery" in the extension. Only the images relevant to these tags is displayed

2) This extension loads the image faster than other plugins and consumes less bandwidth

Please note that the photos displayed through this extension belong to the respective owners. Clicking on the photo link will take you to the corresponding Flickr page. You can view the details about the owner form there

The tags follow "OR" logic. So if you give two completely different tags, image that fall under either of these categories will be shown. For example, if you give tags as "Baby, Buildings", you will see either a baby image or a building image when you open a new tab. It is better to give multiple tags according to your taste, so that you get a good mix of images.

Full source code for this plugin is available here : https://github.com/subramaniashiva/flickr-new-tab-chrome
If you want to add new feature/fix a bug, open an issue and send me a Pull Request                    

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

नाम Flickr New Tab Flickr New Tab
ID okjegjakfleakclpecombdodpfdkahea
आधिकारिक URL https://chrome.google.com/webstore/detail/flickr-new-tab/okjegjakfleakclpecombdodpfdkahea
विवरण Load the new tab page with a photo from Flickr Stream. You can choose the type of photos that you want to see.
फ़ाइल का आकार 3.85 MB
स्थापना संख्या 419
वर्तमान संस्करण 1.0
अंतिम अपडेट 2015-07-31
प्रकाशन तिथि 2015-07-31
रेटिंग 4.75/5 कुल 8 रेटिंग्स
डेवलपर SubramaniaShiva
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/subramaniashiva
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Flickr New Tab",
    "short_name": "Flickr Tab",
    "description": "Load the new tab page with a photo from Flickr Stream. You can choose the type of photos that you want to see.",
    "homepage_url": "https:\/\/github.com\/subramaniashiva\/flickr-new-tab-chrome",
    "version": "1.0",
    "incognito": "split",
    "browser_action": {
        "default_icon": "icons\/icon.png",
        "default_popup": "popup.html",
        "default_title": "Configure Flickr Tags"
    },
    "chrome_url_overrides": {
        "newtab": "index.html"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs"
    ],
    "icons": {
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "manifest_version": 2
}