forked from GoogleChrome/chrome-extensions-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add DevTools Tips example (GoogleChrome#1013)
* Add DevTools Tips example * Update functional-samples/tutorial.focus-mode-debugging/README.md Co-authored-by: Joe Medley <[email protected]> --------- Co-authored-by: Joe Medley <[email protected]>
- Loading branch information
1 parent
c123287
commit a1c97b5
Showing
11 changed files
with
219 additions
and
0 deletions.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
functional-samples/tutorial.focus-mode-debugging/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Oliver Focus Mode | ||
|
||
Extension used in the [Debugging Chrome extensions](https://www.youtube.com/watch?v=Ta-YTDhiBIQ) DevTools Tips video. This extension simplifies the styling of the extensions and Chrome Web Store documentation pages so that they are easier to read when the action icon is clicked. | ||
|
||
This extension is based on the [Focus Mode](/functional-samples/tutorial.focus-mode/) extension. | ||
|
||
**Note:** `background.js` and `focus-mode.js` are intentionally broken. Try to fix them, and compare your fixes with the code in the `fixed` folder. | ||
|
||
## Running this extension | ||
|
||
1. Clone this repository. | ||
2. Load this directory in Chrome as an [unpacked extension](https://developer.chrome.com/docs/extensions/mv3/getstarted/development-basics/#load-unpacked). | ||
3. Visit a page in the Extensions or Chrome Web Store sections on developer.chrome.com, e.g https://developer.chrome.com/docs/extensions/mv3/getstarted/tut-focus-mode/. | ||
4. Click the extension icon to toggle focus mode. |
44 changes: 44 additions & 0 deletions
44
functional-samples/tutorial.focus-mode-debugging/background.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
// Copyright 2023 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// https://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
chrome.runtime.onInstalled.addListener(() => { | ||
chrome.action.setBadgeText({ | ||
text: 'OFF' | ||
}); | ||
}); | ||
|
||
const extensions = 'https://developer.chrome.com/docs/extensions'; | ||
const webstore = 'https://developer.chrome.com/docs/webstore'; | ||
|
||
// When the user clicks on the extension action | ||
chrome.action.onClicked.addListener(async (tab) => { | ||
if (tab.url?.startsWith(extensions) || tab.url?.startsWith(webstore)) { | ||
// We retrieve the action badge to check if the extension is 'ON' or 'OFF' | ||
const prevState = await chrome.action.getBadgeText({ tabId: tab.id }); | ||
// Next state will always be the opposite | ||
const nextState = prevState === 'ON' ? 'OFF' : 'ON'; | ||
|
||
// Set the action badge to the next state | ||
await chrome.action.setBadgeText({ | ||
tabId: tab.id, | ||
text: nextState | ||
}); | ||
|
||
if (nextState === 'ON') { | ||
chrome.tabs.sendMessage(tab.id, { data: 'focus-on' }); | ||
} else if (nextState === 'OFF') { | ||
chrome.tabs.sendMessage(tab.id, { data: 'focus-off' }); | ||
} | ||
} | ||
}); |
44 changes: 44 additions & 0 deletions
44
functional-samples/tutorial.focus-mode-debugging/fixed/background.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
// Copyright 2023 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// https://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
chrome.runtime.onInstalled.addListener(() => { | ||
chrome.action.setBadgeText({ | ||
text: 'OFF' | ||
}); | ||
}); | ||
|
||
const extensions = 'https://developer.chrome.com/docs/extensions'; | ||
const webstore = 'https://developer.chrome.com/docs/webstore'; | ||
|
||
// When the user clicks on the extension action | ||
chrome.action.onClicked.addListener(async (tab) => { | ||
if (tab.url?.startsWith(extensions) || tab.url?.startsWith(webstore)) { | ||
// We retrieve the action badge to check if the extension is 'ON' or 'OFF' | ||
const prevState = await chrome.action.getBadgeText({ tabId: tab.id }); | ||
// Next state will always be the opposite | ||
const nextState = prevState === 'ON' ? 'OFF' : 'ON'; | ||
|
||
// Set the action badge to the next state | ||
await chrome.action.setBadgeText({ | ||
tabId: tab.id, | ||
text: nextState | ||
}); | ||
|
||
if (nextState === 'ON') { | ||
chrome.tabs.sendMessage(tab.id, { data: 'focus-on' }); | ||
} else if (nextState === 'OFF') { | ||
chrome.tabs.sendMessage(tab.id, { data: 'focus-off' }); | ||
} | ||
} | ||
}); |
24 changes: 24 additions & 0 deletions
24
functional-samples/tutorial.focus-mode-debugging/fixed/focus-mode.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// Copyright 2023 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// https://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
chrome.runtime.onMessage.addListener((msg) => { | ||
switch (msg.data) { | ||
case 'focus-on': | ||
document.body.setAttribute('data-focus-mode', 'on'); | ||
break; | ||
case 'focus-off': | ||
document.body.removeAttribute('data-focus-mode'); | ||
break; | ||
} | ||
}); |
29 changes: 29 additions & 0 deletions
29
functional-samples/tutorial.focus-mode-debugging/focus-mode.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/* | ||
Copyright 2023 Google LLC | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
https://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
body[data-focus-mode='on'] | ||
> .scaffold | ||
> :is(top-nav, navigation-rail, side-nav, footer), | ||
body[data-focus-mode='on'] main > :not(:last-child), | ||
body[data-focus-mode='on'] main > :last-child > navigation-tree, | ||
body[data-focus-mode='on'] main .toc-container { | ||
display: none; | ||
} | ||
|
||
body[data-focus-mode='on'] main > :last-child { | ||
margin-top: min(10vmax, 10rem); | ||
margin-bottom: min(10vmax, 10rem); | ||
} |
24 changes: 24 additions & 0 deletions
24
functional-samples/tutorial.focus-mode-debugging/focus-mode.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// Copyright 2023 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// https://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
chrome.runtime.onMessage.addListener((msg) => { | ||
switch (msg) { | ||
case 'focus-on': | ||
document.body.setAttribute('data-focus-mode', 'on'); | ||
break; | ||
case 'focus-off': | ||
document.body.removeAttribute('data-focus-mode'); | ||
break; | ||
} | ||
}); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+876 Bytes
functional-samples/tutorial.focus-mode-debugging/images/icon-16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
40 changes: 40 additions & 0 deletions
40
functional-samples/tutorial.focus-mode-debugging/manifest.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ | ||
"manifest_version": 3, | ||
"name": "Oliver Focus Mode", | ||
"description": "Example extension from DevTools Tips video.", | ||
"version": "1.0", | ||
"icons": { | ||
"16": "images/icon-16.png", | ||
"32": "images/icon-32.png", | ||
"48": "images/icon-48.png", | ||
"128": "images/icon-128.png" | ||
}, | ||
"background": { | ||
"service_worker": "background.js" | ||
}, | ||
"action": { | ||
"default_icon": { | ||
"16": "images/icon-16.png", | ||
"32": "images/icon-32.png", | ||
"48": "images/icon-48.png", | ||
"128": "images/icon-128.png" | ||
} | ||
}, | ||
"permissions": [], | ||
"host_permissions": ["https://developer.chrome.com/*"], | ||
"commands": { | ||
"_execute_action": { | ||
"suggested_key": { | ||
"default": "Ctrl+B", | ||
"mac": "Command+B" | ||
} | ||
} | ||
}, | ||
"content_scripts": [ | ||
{ | ||
"js": ["focus-mode.js"], | ||
"css": ["focus-mode.css"], | ||
"matches": ["https://developer.chrome.com/*"] | ||
} | ||
] | ||
} |