flickr mitbbs

The extension is made to retrieve flickr photo address, with improved user experience from Kailuo

Co to jest flickr mitbbs?

flickr mitbbs to rozszerzenie Chrome opracowane przez http://yuncongzhang.wordpress.com, a jego główną funkcją jest „The extension is made to retrieve flickr photo address, with improved user experience from Kailuo”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia flickr mitbbs

Pobierz pliki rozszerzeń flickr mitbbs w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        This extension can help people to get a list of their flickr photo addresses in their set or organize page. Much thanks to Kailuo for improving user experience.                    

Podstawowe informacje o rozszerzeniu

Nazwa flickr mitbbs flickr mitbbs
ID fdklpjofhncchekdkfmfedneodfkilci
Oficjalny URL https://chrome.google.com/webstore/detail/flickr-mitbbs/fdklpjofhncchekdkfmfedneodfkilci
Opis The extension is made to retrieve flickr photo address, with improved user experience from Kailuo
Rozmiar pliku 78.53 KB
Liczba instalacji 30
Aktualna Wersja 1.3
Ostatnia Aktualizacja 2014-06-01
Data Publikacji 2014-06-01
Deweloper http://yuncongzhang.wordpress.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/needforspeed/flickr_photo_addresses
Adres URL Strony Pomocy https://github.com/needforspeed/flickr_photo_addresses
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "flickr mitbbs",
    "version": "1.3",
    "manifest_version": 2,
    "description": "The extension is made to retrieve flickr photo address, with improved user experience from Kailuo",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.flickr.com\/*"
            ],
            "js": [
                "jquery.js",
                "popup.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "http:\/\/api.flickr.com\/",
        "http:\/\/www.flickr.com\/",
        "tabs"
    ],
    "web_accessible_resources": [
        "jquery.js"
    ]
}