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文件
下載Unofficial SmugMug extension for Chrome擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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. 擴展基本資訊
| 名稱 | |
| ID | acobflahofemoblocddilbgnokclnphd |
| 官方網址 | 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"
} | |