More photos and videos

This extension adds a 'more photos' and 'more videos' button to the facebook profiles for easy discovery of photos about the person.

More photos and videos란 무엇입니까?

More photos and videos은(는) dlux.hu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension adds a 'more photos' and 'more videos' button to the facebook profiles for easy discovery of photos about the person."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

More photos and videos 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This extension adds 3 new features to facebook:

1, "More photos"

This lets you discover more photos of any facebook user. It shows more photos of the user that they were tagged in. It works even if "Photos of the user" link is not visible, and even if it works, it usually finds more photos.

2, "More videos"

It lets you discover more videos of any facebook user. Works similarly than "More photos".

3, Copy canonical profile id

It copies the canonical profile link (with the profile_id) to the clipboard. This lets you save the profile id of a person even if they change their name or profile url.                    

확장 프로그램 기본 정보

이름 More photos and videos More photos and videos
ID pbioadhkealfcknifmfoojhmmocellem
공식 URL https://chromewebstore.google.com/detail/more-photos-and-videos/pbioadhkealfcknifmfoojhmmocellem
설명 This extension adds a 'more photos' and 'more videos' button to the facebook profiles for easy discovery of photos about the person.
파일 크기 22.98 KB
설치 횟수 395
현재 버전 0.2
최근 업데이트 2018-07-28
출시 날짜 2018-07-27
평점 1.00/5 총 1 개의 평점
개발자 dlux.hu
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "More photos and videos",
    "version": "0.2",
    "description": "This extension adds a 'more photos' and 'more videos' button to the facebook profiles for easy discovery of photos about the person.",
    "page_action": {
        "default_icon": "icon-64x64.png",
        "default_popup": "facebook-action.html",
        "default_title": "More Photos, Videos and Id"
    },
    "content_scripts": [
        {
            "exclude_globs": [
                "http:\/\/*.facebook.com\/ajax\/*",
                "https:\/\/*.facebook.com\/ajax\/*",
                "http:\/\/www.facebook.com\/ai.php*",
                "https:\/\/www.facebook.com\/ai.php*",
                "https:\/\/www.facebook.com\/xti.php*",
                "http:\/\/www.facebook.com\/xti.php*",
                "http:\/\/developers.facebook.com\/*",
                "https:\/\/developers.facebook.com\/*"
            ],
            "include_globs": [
                "http:\/\/*.facebook.com\/*",
                "https:\/\/*.facebook.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "matches": [
                "http:\/\/*.facebook.com\/*",
                "https:\/\/*.facebook.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "copy-icon.png",
        "embed-name.js"
    ]
}