Artstation Likes New Tab
Get a random artwork from your artstation likes everytime you open a new tab!
Artstation Likes New Tab란 무엇입니까?
Artstation Likes New Tab은(는) oytundd에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Get a random artwork from your artstation likes everytime you open a new tab!"입니다.
확장 프로그램 스크린샷
Artstation Likes New Tab 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Get a random artwork from your Artstation likes everytime you open a new tab! Just enter your username and refresh it yourself or just keep surfing the web and let them come to you everytime you open a new tab.You can access the artworks original page by clicking on the artwork - author text.You can access the source code using the website link within the store page. Note: Only last 50 likes can be used due to Artstation's api limitations. Feel free to support me at https://ko-fi.com/oytundd !
확장 프로그램 기본 정보
이름 | Artstation Likes New Tab |
ID | cancnflmodecjmcjfefhildbmllgenee |
공식 URL | https://chromewebstore.google.com/detail/artstation-likes-new-tab/cancnflmodecjmcjfefhildbmllgenee |
설명 | Get a random artwork from your artstation likes everytime you open a new tab! |
파일 크기 | 96.28 KB |
설치 횟수 | 33 |
현재 버전 | 1.1 |
최근 업데이트 | 2021-06-05 |
출시 날짜 | 2021-03-22 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | oytundd |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/oytundd/artstationnew |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Artstation Likes New Tab", "description": "Get a random artwork from your artstation likes everytime you open a new tab!", "version": "1.1", "incognito": "split", "permissions": [ "storage" ], "chrome_url_overrides": { "newtab": "art.html" }, "content_security_policy": "script-src 'self' https:\/\/www.artstation.com\/; object-src", "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "browser_action": { "default_icon": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.artstation.com\/users\/*" ], "js": [ "newIndex.js" ] } ], "manifest_version": 2 } |