Unofficial SmugMug extension for Chrome
Extra features for SmugMug site owners
Unofficial SmugMug extension for Chrome란 무엇입니까?
Unofficial SmugMug extension for Chrome은(는) https://sherlockphotography.org에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extra features for SmugMug site owners"입니다.
확장 프로그램 스크린샷
Unofficial SmugMug extension for Chrome 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension adds an "SM" button to your toolbar. Click on the button when you're viewing your SmugMug page to show a menu of special features designed to help you administrate your site! Features include: - Add a PayPal shopping cart to your galleries - Create a backup copy of your customisations - Create a list of all of your folders & galleries in CSV and HTML format - Create permalinks to your galleries - Show badges on image thumbnails to show that they have been collected from other galleries - Advanced bulk editing tool for image titles/captions/keywords For more help and details, please check out my website linked from the "details" tab.
확장 프로그램 기본 정보
이름 | Unofficial SmugMug extension for Chrome |
ID | acobflahofemoblocddilbgnokclnphd |
공식 URL | https://chromewebstore.google.com/detail/unofficial-smugmug-extens/acobflahofemoblocddilbgnokclnphd |
설명 | Extra features for SmugMug site owners |
파일 크기 | 7.72 MB |
설치 횟수 | 693 |
현재 버전 | 0.4.11 |
최근 업데이트 | 2023-02-22 |
출시 날짜 | 2019-08-14 |
평점 | 4.90/5 총 10 개의 평점 |
개발자 | https://sherlockphotography.org |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.sherlockphotography.org/Customisations/SmugMug-for-Chrome |
도움말 페이지 URL | https://www.sherlockphotography.org/Customisations/SmugMug-for-Chrome |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Unofficial SmugMug extension for Chrome", "description": "Extra features for SmugMug site owners", "version": "0.4.11", "author": "Nicholas Sherlock of Sherlock Photography", "permissions": [ "activeTab", "storage", "declarativeNetRequest", "scripting" ], "declarative_net_request": { "rule_resources": [ { "id": "ruleset_1", "enabled": true, "path": "rules.json" } ] }, "host_permissions": [ "https:\/\/*.smugmug.com\/" ], "optional_host_permissions": [ "https:\/\/*\/" ], "content_scripts": [ { "matches": [ "https:\/\/*.smugmug.com\/*" ], "js": [ "content.js" ], "run_at": "document_idle" } ], "icons": { "19": "images\/icon19.png", "38": "images\/icon38.png", "128": "images\/icon128.png" }, "action": { "default_icon": { "19": "images\/icon19.png", "38": "images\/icon38.png" }, "default_popup": "popup.html" }, "minimum_chrome_version": "96" } |