Artstation Plus
Adding new features to Artstation
什麼是Artstation Plus?
Artstation Plus是由https://demiart.ru開發的Chrome擴展程式,該擴展的主要功能是“Adding new features to Artstation”。
擴展截圖
下載Artstation Plus擴展crx文件
下載Artstation Plus擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
— New Ratio parameter has been added to the preview list, which displays the ratio of likes to views. Each preview now shows the number of views and likes.
— Dropdown list has been added to the «Manage Portfolio» page for your Artstation artworks. This dropdown list allows you to sort your portfolio by date, views, likes, and ratios.
— «Download all images» button on each user profiles.
— Add to preview info about the place in the trends.
— Legacy Preview design — disable slow animation of title on previews. You can switch to modern design in the extension settings.
Github: https://github.com/demiurge-ash/artstation-plus 擴展基本資訊
| 名稱 | |
| ID | ebdenohdcbolldkofcepdbjdibghkndc |
| 官方網址 | https://chromewebstore.google.com/detail/artstation-plus/ebdenohdcbolldkofcepdbjdibghkndc |
| 簡介 | Adding new features to Artstation |
| 檔案大小 | 32.84 KB |
| 安裝次數 | 115 |
| 目前版本 | 3.5.0 |
| 更新時間 | 2024-01-14 |
| 上架時間 | 2023-05-23 |
| 評分 | 3.75/5 共 4 次評分 |
| 開發者 | https://demiart.ru |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/demiurge-ash/artstation-plus |
| 說明頁面URL | https://github.com/demiurge-ash/artstation-plus/issues |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Artstation Plus",
"version": "3.5.0",
"description": "Adding new features to Artstation",
"manifest_version": 3,
"icons": {
"72": "icons\/icon-72.png",
"128": "icons\/icon-128.png"
},
"options_ui": {
"page": "ui\/options.html",
"open_in_tab": false
},
"permissions": [
"activeTab",
"downloads",
"storage"
],
"host_permissions": [
"*:\/\/*.artstation.com\/*"
],
"web_accessible_resources": [
{
"resources": [
"icons\/crosshairs.svg",
"icons\/eye.svg",
"icons\/thumbs-up.svg",
"icons\/trend.svg",
"icons\/download.svg",
"css\/styles.css",
"ui\/download.html",
"ui\/download.js"
],
"matches": [
"*:\/\/*.artstation.com\/*"
]
}
],
"background": {
"service_worker": "worker.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.artstation.com\/*"
],
"js": [
"js\/functions.js",
"js\/content.js"
],
"run_at": "document_idle"
}
]
} | |