Skip to content

Docs support for special pages & better organisation #330

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Mar 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ docs/
lib/
Sources/ContentScopeScripts/dist/
integration-test/extension/contentScope.js
packages/special-pages/pages/**/public
1 change: 1 addition & 0 deletions inject/android.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/**
* @module Android integration
* @category Content Scope Scripts Integrations
*/
/* global contentScopeFeatures */
import { processConfig, isGloballyDisabled } from './../src/utils'
Expand Down
1 change: 1 addition & 0 deletions inject/apple.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/**
* @module Apple integration
* @category Content Scope Scripts Integrations
*/
/* global contentScopeFeatures */

Expand Down
1 change: 1 addition & 0 deletions inject/chrome-mv3.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/**
* @module Chrome MV3 integration
* @category Content Scope Scripts Integrations
*/
/* global contentScopeFeatures */

Expand Down
1 change: 1 addition & 0 deletions inject/chrome.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/**
* @module Chrome integration
* @category Content Scope Scripts Integrations
*/
import { isTrackerOrigin } from '../src/trackers'

Expand Down
4 changes: 0 additions & 4 deletions inject/integration.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
/**
* @module Testing integration
*/

/* global contentScopeFeatures */
function getTopLevelURL () {
try {
Expand Down
1 change: 1 addition & 0 deletions inject/mozilla.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/**
* @module Mozilla integration
* @category Content Scope Scripts Integrations
*/
/* global contentScopeFeatures */
import { isTrackerOrigin } from '../src/trackers'
Expand Down
1 change: 1 addition & 0 deletions inject/windows.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/**
* @module Windows integration
* @category Content Scope Scripts Integrations
*/
/* global contentScopeFeatures */
import { processConfig, isGloballyDisabled, windowsSpecificFeatures } from './../src/utils'
Expand Down
Loading