Get file path

Get the file path for the specified sites.

Get file path란 무엇입니까?

Get file path은(는) R.A. Spruyt에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Get the file path for the specified sites."입니다.

확장 프로그램 스크린샷

screenshot

Get file path 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Get the file path for websites based on specified rules.
This extension allows you to set up rules so that you can easily find the file of the current page/frame on your hard drive.

Example:
Say your have the following rule:
Name: 'localhost'
Url: 'https://localhost/yourPath/'
Directory: 'c:\mywebsites\yourPath'

Now if you visit any site on localhost you will have an extra option in your context menu, this will copy a file path to your clipboard based on the rule.
So 'http://localhost/yourPath/anotherfolder/thepage.html' will return 'c:\mywebsites\yourPath\anotherfolder\thepage.html'.

Allowing you to open the file quickly in your favorite editor.
https://github.com/Riuujin/get-file-path-chrome-extension

New permissions in 1.1.0:
Due to api limitations, a script needs to be injected into the current page to copy the url to clipboard. It will not be used for anything else.

Recent changes:
1.1.3 - Fixed bugs.
1.1.4 - Fixed bugs, should fix the bug where the path is not copied to clipboard correctly.
1.1.5 - Fixed not working the first time, occurred every time the extension was not used for 30 seconds or so.
1.1.6 - Added fallback to for when clipboard api is not available
1.1.7 - Security updates.                    

확장 프로그램 기본 정보

이름 Get file path Get file path
ID ggoohhjefaikbncimfcekpbhgggdnidc
공식 URL https://chromewebstore.google.com/detail/get-file-path/ggoohhjefaikbncimfcekpbhgggdnidc
설명 Get the file path for the specified sites.
파일 크기 128 KB
설치 횟수 549
현재 버전 1.1.7
최근 업데이트 2023-03-16
출시 날짜 2019-06-14
평점 4.33/5 총 6 개의 평점
개발자 R.A. Spruyt
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Get file path",
    "description": "Get the file path for the specified sites.",
    "version": "1.1.7",
    "manifest_version": 3,
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "options_page": "settings.html",
    "permissions": [
        "scripting",
        "clipboardWrite",
        "contextMenus",
        "storage",
        "notifications",
        "activeTab"
    ]
}