自由跳转
微博,知乎,简书等网站外链自由跳转
自由跳转란 무엇입니까?
自由跳转은(는) xukeek에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "微博,知乎,简书等网站外链自由跳转"입니다.
확장 프로그램 스크린샷
自由跳转 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
微博,知乎,简书等网站的外链有时候不能直接访问,通过这个插件来修改不能跳转的外链。 如果有其他网站欢迎反馈。
확장 프로그램 기본 정보
이름 | 自由跳转 |
ID | ldfofldbjpkkenoichgpoikbfgplgfdd |
공식 URL | https://chromewebstore.google.com/detail/%E8%87%AA%E7%94%B1%E8%B7%B3%E8%BD%AC/ldfofldbjpkkenoichgpoikbfgplgfdd |
설명 | 微博,知乎,简书等网站外链自由跳转 |
파일 크기 | 513 KB |
설치 횟수 | 460 |
현재 버전 | 1.0.2 |
최근 업데이트 | 2020-10-07 |
출시 날짜 | 2020-09-16 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | xukeek |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://github.com/xukeek/link-free |
지원되는 언어 | zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "\u81ea\u7531\u8df3\u8f6c", "description": "\u5fae\u535a\uff0c\u77e5\u4e4e\uff0c\u7b80\u4e66\u7b49\u7f51\u7ad9\u5916\u94fe\u81ea\u7531\u8df3\u8f6c", "version": "1.0.2", "browser_action": { "default_icon": "icon16.png", "default_popup": "popup.html" }, "background": { "scripts": [ "js\/backgroundPage.js" ], "persistent": false }, "icons": { "16": "icon16.png", "19": "icon19.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "http:\/\/t.cn\/*" ], "js": [ "js\/contentScript.js" ] }, { "matches": [ "https:\/\/*.zhihu.com\/*" ], "js": [ "js\/zhihu.js" ] }, { "matches": [ "https:\/\/www.jianshu.com\/*" ], "js": [ "js\/jianshu.js" ] }, { "matches": [ "https:\/\/weibo.com\/*" ], "js": [ "js\/weibo.js" ] }, { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "js\/youtube.js" ] } ], "permissions": [ "http:\/\/api.t.sina.com.cn\/*", "storage", "notifications" ] } |