Pagemark for Chrome
Remember your position on any page
什么是Pagemark for Chrome?
Pagemark for Chrome是由Chuck Baker开发的Chrome扩展程序,该扩展的主要功能是“Remember your position on any page”。
扩展截图
下载Pagemark for Chrome扩展crx文件
下载Pagemark for Chrome扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Pagemarks are like bookmarks, but for a specific place within a webpage. One or more pagemarks can be set on most any webpage. Clicking the toolbar icon will scroll the screen to the first/next pagemark. 扩展基本信息
| 名称 | |
| ID | mmdffnlogficblnnnehdcjjbcmcaneih |
| 官方URL | https://chromewebstore.google.com/detail/pagemark-for-chrome/mmdffnlogficblnnnehdcjjbcmcaneih |
| 简介 | Remember your position on any page |
| 文件大小 | 144 KB |
| 安装次数 | 142 |
| 当前版本 | 1.0.0.1 |
| 更新时间 | 2016-07-15 |
| 上架时间 | 2016-07-15 |
| 评分 | 4.33/5 共3次评分 |
| 开发者 | Chuck Baker |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | http://softwarebychuck.com/ |
| 帮助页面URL | http://www.customsoftwareconsult.com/forum/viewforum.php?f=18 |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Pagemark for Chrome",
"short_name": "Pagemark",
"description": "Remember your position on any page",
"version": "1.0.0.1",
"author": "Chuck Baker",
"browser_action": {
"default_icon": "pm38x38.png",
"default_title": "Pagemark\n\nDouble click to set a pagemark at current position\nSingle click to go to next pagemark\nCTRL-CLICK to delete current pagemark\nCTRL-ALT-CLICK to delete all pagemarks on the page"
},
"permissions": [
"activeTab",
"storage",
"tabs",
"https:\/\/accounts.google.com\/*",
"https:\/\/www.googleapis.com\/*",
"http:\/\/*\/",
"https:\/\/*\/",
"file:\/\/\/*\/*"
],
"background": {
"persistent": false,
"page": "sandbox.html"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"file:\/\/\/*\/*"
],
"js": [
"taffy.js",
"pmCommon.js",
"pmContent.js",
"purchase.js",
"buy.js",
"propsConsole.js"
],
"run_at": "document_end",
"all_frames": true
}
],
"options_ui": {
"page": "pagemarkOptions.html",
"chrome_style": false,
"open_in_tab": true
},
"oauth2": {
"client_id": "476322903377-urvgq80canvq2im29dfvc361uhtfoga1.apps.googleusercontent.com",
"scopes": [
"https:\/\/www.googleapis.com\/auth\/plus.login",
"https:\/\/www.googleapis.com\/auth\/chromewebstore.readonly",
"https:\/\/www.googleapis.com\/auth\/userinfo.email"
]
},
"content_security_policy": "script-src 'self' https:\/\/apis.google.com; object-src 'self'",
"web_accessible_resources": [
"pagemarkOptions.html",
"pmEnd.png"
]
} | |